/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a6fa5;
}

.cta-btn {
    background: #4a6fa5;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #3a5a95;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Thank You Container */
.thank-you-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - 120px);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding-top: 60px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.logo-section h1 {

    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Message Section */
.message-section {
    margin-bottom: 50px;
}

.message-section h2 {

    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.message-section p {

    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.message-section p:last-child {
    margin-bottom: 0;
}

/* Action Section */
.action-section {
    margin-bottom: 40px;
}

.back-btn {
    background: #4a6fa5;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover {
    background: #3a5a95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #4a6fa5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 20px;
        min-height: calc(100vh - 100px);
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-section h1 {
        font-size: 1.5rem;
    }
    
    .message-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .message-section p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .back-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .message-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}