:root {
    --primary-color: #1e4c84;
    --secondary-color: #3B82F6;
    --dark-color: #1E293B;
    --light-color: #FFFFFF;
    --background-color: #F8FAFC;
    --text-color: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --container-padding: 10%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Responsive container padding */
@media (max-width: 1400px) {
    :root {
        --container-padding: 8%;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-padding: 6%;
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 4%;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 3%;
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    padding: 12px 0;
    font-size: 14px;
    color: var(--light-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: var(--light-color);
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--light-color);
    transform: translateY(-2px);
    opacity: 0.8;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-color);
    font-size: 13px;
}

.contact-info i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Main Header Styles */
.main-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    padding: 8px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo:hover {
    color: var(--primary-color);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.logo span {
    font-size: 16px;
    font-weight: 600;
}

/* Main Navigation Styles */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 20px;
}

.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-nav ul li {
    white-space: nowrap;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 14px;
    display: block;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(30, 76, 132, 0.08);
}

.login-btn {
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
}

.login-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(30, 76, 132, 0.2);
}

.login-btn i {
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e4c84 0%, #1a4376 100%);
    color: var(--light-color);
    padding: 80px 0 20px;
    position: relative;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-color);
    transform: translateX(8px);
    padding-left: 20px;
}

.footer-column a:hover::before {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons .social-icon {
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.footer-link i {
    color: var(--secondary-color);
    width: 20px;
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        gap: 30px;
    }

    .main-nav {
        margin: 0 15px;
    }
    
    .main-nav ul {
        gap: 5px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mobile-menu-btn {
        display: block;
        order: 1;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--light-color);
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
        margin: 0;
    }

    .main-nav.show {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        padding: 12px;
        width: 100%;
        font-size: 14px;
    }

    .login-btn {
        order: 2;
    }

    .header-content {
        position: relative;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 5px 0;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .logo span {
        font-size: 14px;
    }

    .login-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    .mobile-menu-btn {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a {
        padding-left: 0;
    }

    .footer-column a:hover {
        padding-left: 0;
        transform: translateY(-3px);
    }

    .footer-column a::before {
        display: none;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-link {
        justify-content: center;
    }

    .logo span {
        display: none;
    }

    .login-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .mobile-menu-btn {
        font-size: 16px;
    }
}

/* Remove Package Section Styles */

/* Remove page transition styles */
