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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 32px;
}

.top-header-mobile {
    display: none;
}

.mobile-quick-access {
    display: none;
}

.mobile-quick-access-bottom {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
        padding-bottom: 120px;
    }
    
    .mobile-quick-access {
        display: block;
        background: linear-gradient(135deg, #ad9700 0%, #8a7700 100%);
        border-bottom: 1px solid #8a7700;
        padding: 10px 0;
        position: fixed;
        top: 80px;
        width: 100%;
        z-index: 999;
    }
    
    .mobile-quick-access-bottom {
        display: block;
        background: linear-gradient(135deg, #ad9700 0%, #8a7700 100%);
        border-top: 1px solid #8a7700;
        padding: 10px 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
    }
    
    .quick-access-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .quick-access-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: white;
        font-size: 0.75rem;
        padding: 8px 5px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 70px;
    }
    
    .quick-access-item:hover {
        background: rgba(255,255,255,0.2);
        color: white;
    }
    

    
    .quick-access-item i {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
}

/* Wishlist Styles */
.wishlist-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background: #f0f4f8;
    color: #001157;
}

.wishlist-count {
    background: #d4af37;
    color: #1e3c72;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    position: absolute;
    top: -5px;
    right: 5px;
}

.wishlist-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1002;
    border: 1px solid #dee2e6;
}

.wishlist-menu:hover .wishlist-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.wishlist-header h4 {
    margin: 0;
    color: #1e3c72;
    font-size: 1.1rem;
}

.clear-wishlist {
    color: #dc3545;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

.wishlist-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.wishlist-item:hover {
    background: #f8f9fa;
}

.wishlist-item img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-title {
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.wishlist-item-type {
    font-size: 0.8rem;
    color: #666;
}

.remove-wishlist {
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s;
}

.remove-wishlist:hover {
    background: #f8d7da;
}

.empty-wishlist {
    text-align: center;
    color: #666;
    padding: 20px;
    font-style: italic;
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.heart-icon i {
    font-size: 1.1rem;
    color: #666;
    transition: all 0.3s;
}

.heart-icon:hover i,
.heart-icon.liked i {
    color: #dc3545;
    transform: scale(1.2);
}

.heart-icon.liked {
    background: rgba(220, 53, 69, 0.1);
}

/* Mobile Wishlist */
@media (max-width: 768px) {
    .wishlist-count-mobile {
        position: absolute;
        top: -5px;
        right: 15px;
        background: #d4af37;
        color: #1e3c72;
        font-size: 0.6rem;
        font-weight: bold;
        padding: 2px 5px;
        border-radius: 50%;
        min-width: 15px;
        text-align: center;
    }
    
    .mobile-nav-item.wishlist-mobile {
        position: relative;
    }
    
    .wishlist-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 350px;
        max-height: 70vh;
    }
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #ad9700 0%, #8a7700 100%);
    color: white;
    padding: 6px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    font-size: 0.85rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
}

.top-header-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.top-header-right {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.top-header-right > a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-header-right > a:hover {
    color: #fff3cd;
}

.find-us-dropdown {
    position: relative;
    cursor: pointer;
}

.find-us-dropdown:hover .find-us-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.find-us-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1002;
    padding: 0.5rem 0;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .find-us-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        right: auto;
        min-width: 200px;
        max-width: 90vw;
    }
    
    .find-us-dropdown:hover .find-us-menu {
        transform: translateX(-50%) translateY(0);
    }
}

.find-us-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.find-us-menu a:hover {
    background: #f0f4f8;
    color: #001157;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (max-width: 768px) {
    .header {
        top: 0;
        z-index: 998;
    }
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h2 {
    color: #001157;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.logo span {
    color: #ad9700;
    font-size: 0.9rem;
    line-height: 1;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #001157;
    background: #f0f4f8;
    padding: 8px 16px;
    border-radius: 5px;
}

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 997;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile Header Sections */
    .mobile-header-section {
        border-top: 1px solid #eee;
        padding: 1rem 0;
    }
    
    .mobile-header-title {
        color: #001157;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-header-links {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .mobile-header-links a {
        color: #666;
        text-decoration: none;
        padding: 0.4rem 1.5rem;
        font-size: 0.9rem;
        transition: all 0.3s;
        border-left: 3px solid transparent;
    }
    
    .mobile-header-links a:hover {
        color: #001157;
        background: #f0f4f8;
        border-left-color: #ad9700;
    }
    
    .whatsapp-mobile-link {
        color: white !important;
        margin: 0.5rem 1rem;
        padding: 0.6rem 1rem !important;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
        border-left: none !important;
        background: #25d366 !important;
    }
    
    .whatsapp-mobile-link:hover {
        background: #128c7e !important;
        color: white !important;
        transform: scale(1.02);
    }
    
    .whatsapp-mobile-link i {
        margin-right: 0.5rem;
    }
    
    .whatsapp-menu-link {
        color: white !important;
        margin: 0.5rem;
        padding: 0.6rem 1rem !important;
        border-radius: 20px;
        font-weight: 600;
        background: #25d366 !important;
    }
    
    .whatsapp-menu-link:hover {
        background: #128c7e !important;
        color: white !important;
    }
    
    .whatsapp-section-link {
        color: white !important;
        margin: 0.5rem 0;
        padding: 0.6rem 1rem !important;
        border-radius: 20px;
        font-weight: 600;
        text-align: center;
        display: block;
        background: #25d366 !important;
    }
    
    .whatsapp-section-link:hover {
        background: #128c7e !important;
        color: white !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 17, 87, 0.9) 0%, rgba(0, 17, 87, 0.9) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.hero-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-content {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/edu.webp') center/cover;
    padding: 60px 0;
    color: #333;
    position: relative;
}

.hero-stylish-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-accent {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ad9700;
    font-style: italic;
}

.hero-main {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    margin: 0;
}

.hero-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ad9700, #c4a900);
    border-radius: 2px;
}

.hero-highlight {
    font-size: 2rem;
    font-weight: 600;
    color: #ad9700;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(173, 151, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #ad9700;
}

.hero-details {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.hero-quote {
    background: linear-gradient(135deg, #ad9700 0%, #c4a900 100%);
    border-left: 4px solid #001157;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #001157;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(173, 151, 0, 0.3);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #dee2e6;
}

.highlight-item i {
    color: #ad9700;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ad9700;
    color: white;
}

.btn-primary:hover {
    background: #8a7700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #001157;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #e9ecef;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #001157;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.services-preview .service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    max-width: 250px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #dee2e6;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #ad9700;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #001157;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #001157;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #001157;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.destination-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.destination-content li:before {
    content: "✓";
    color: #ad9700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ad9700 0%, #c4a900 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(173, 151, 0, 0.3);
}

.destination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 151, 0, 0.4);
    color: white;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #001157;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.story-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.story-content p {
    color: #333333;
    font-style: italic;
    margin-bottom: 1rem;
}

.story-author {
    color: #0051A1;
}

.story-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.story-author span {
    color: #666666;
    font-size: 0.9rem;
}

/* Destination Cards Styles */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.detail-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    color: #0051A1;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h3 i {
    color: #FFB800;
}

.detail-card ul {
    color: #333333;
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card ul li:before {
    content: '•';
    color: #FFB800;
    position: absolute;
    left: 0;
}

.detail-card ul li strong {
    color: #0051A1;
    font-weight: 600;
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 17, 87, 0.9) 0%, rgba(0, 17, 87, 0.9) 100%);
    color: white;
    padding: 190px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.services-content {
    background: white;
    padding: 60px 0;
    color: #333;
}

.services-details {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stylish-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.heading-accent {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ad9700;
    font-style: italic;
}

.main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    margin: 0;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ad9700, #c4a900);
    border-radius: 2px;
}

.heading-highlight {
    font-size: 2rem;
    font-weight: 600;
    color: #ad9700;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(173, 151, 0, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Enhanced Page Header Typography */
.page-header .stylish-heading {
    margin-bottom: 2rem;
}

.page-header .header-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .trust-indicators {
    margin: 3rem 0;
}

.page-header .header-quote {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.header-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.header-details {
    max-width: 900px;
    margin: 0 auto;
}

.header-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.header-quote {
    background: linear-gradient(135deg, #ad9700 0%, #c4a900 100%);
    border-left: 4px solid #001157;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #001157;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(173, 151, 0, 0.3);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #ad9700;
    font-size: 1.1rem;
}

.solution-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-item i {
    color: #ad9700;
    font-size: 1.1rem;
}

.news-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-item i {
    color: #ad9700;
    font-size: 1.1rem;
}

.news-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.news-intro-content h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.news-main-quote {
    background: linear-gradient(135deg, #ad9700 0%, #c4a900 100%);
    border-left: 4px solid #001157;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #001157;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(173, 151, 0, 0.3);
}

.event-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.event-item i {
    color: #ad9700;
    font-size: 1.1rem;
}

.events-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.events-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-intro-content h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.events-main-quote {
    background: linear-gradient(135deg, #ad9700 0%, #c4a900 100%);
    border-left: 4px solid #001157;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #001157;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(173, 151, 0, 0.3);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li:before {
    content: "✓";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-icon i {
    font-size: 3rem;
    color: #ff6b35;
}

.service-content h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-content {
    text-align: center;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-section h2 {
    color: #001157;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.logo-section span {
    color: #ad9700;
    font-size: 1.2rem;
    line-height: 1;
}

.human-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.human-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.image-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.corner-logo {
    width: 40px;
    height: 50px;
    object-fit: contain;
}

.contact-info h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #ad9700;
    width: 20px;
}

@media (max-width: 768px) {
    .contact-info p {
        font-size: 0.9rem;
    }
}

.contact-form-container {
    background: #e9ecef;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.contact-form-container h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #e9ecef;
}

.map-section h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: #f8f9fa;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    border: 1px solid #dee2e6;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
}

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #001157;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo::before {
        display: none;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ad9700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ad9700;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #8a7700;
}

.whatsapp-footer {
    background: #25d366 !important;
}

.whatsapp-footer:hover {
    background: #128c7e !important;
}

.whatsapp-badge {
    margin-left: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

/* Mobile Comparison Cards */
.mobile-comparison {
    display: none;
}

@media (max-width: 768px) {
    .comparison-table {
        display: none;
    }
    
    .mobile-comparison {
        display: block !important;
    }
    
    .comparison-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-card {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
        border: 2px solid #dee2e6;
    }
    
    .brighterbee-card {
        border: 3px solid #d4af37;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
    }
    
    .card-header {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #d4af37;
    }
    
    .card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e3c72;
        margin-bottom: 5px;
    }
    
    .brighterbee-card .card-title {
        color: #d4af37;
    }
    
    .card-subtitle {
        color: #666;
        font-size: 0.9rem;
    }
    
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        gap: 12px;
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: bold;
        flex-shrink: 0;
    }
    
    .feature-icon.check {
        background: #d4af37;
        color: white;
    }
    
    .feature-icon.cross {
        background: #dc3545;
        color: white;
    }
    
    .feature-text {
        color: #333;
        font-weight: 500;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 280px;
    height: 80px;
    background: white;
    transform: skew(-15deg);
    border-radius: 8px;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo h2 {
    color: #001157;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.footer-logo span {
    color: #ad9700;
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p:first-child {
    font-style: italic;
    color: #ad9700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1002;
    list-style: none;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 250px;
        max-width: 90vw;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f0f4f8;
    color: #001157;
}

.view-all-services {
    font-weight: 600;
    color: #ad9700 !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem !important;
    margin-bottom: 0.5rem !important;
}

.view-all-services:hover {
    background: #fff3cd !important;
    color: #001157 !important;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.5rem 0;
}

/* Steps Content */
.steps-content {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ad9700;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Destination Form Styles */
.form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-header h2,
.form-header p {
    color: #1e3c72 !important;
}

.form-group label {
    color: #1e3c72 !important;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #1e3c72;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2a5298 !important;
    font-size: 15px;
}

.form-group select {
    color: #2a5298 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%231e3c72' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #2a5298 !important;
    opacity: 0.7;
}

.form-group select option {
    color: #2a5298;
    background: #ffffff;
}

.form-group select:focus option {
    color: #2a5298;
}

.submit-btn {
    background: #d4af37;
    color: #1e3c72 !important;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1e3c72;
    color: #d4af37 !important;
}

/* Destination Hero Section Styles */
.page-header {
    background: linear-gradient(135deg, #0051A1 0%, #003366 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.stylish-heading {
    margin-bottom: 2rem;
}

.heading-accent {
    color: #FFB800;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
    color: #ffffff;
}

.heading-highlight {
    color: #FFB800;
    font-size: 24px;
    display: block;
}

.header-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Destination Overview Section */
.country-overview {
    padding: 60px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-content h2 {
    color: #0051A1;
    font-size: 32px;
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #0051A1;
}

.benefit-item i {
    color: #0051A1;
    font-size: 24px;
    margin-bottom: 10px;
}

.benefit-item h4 {
    color: #0051A1;
    margin-bottom: 5px;
}

/* Course Finder Styles */
.course-finder {
    padding: 40px 0;
    background: #f8fafc;
}

.course-search {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.course-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.course-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.course-title {
    color: #0051A1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-info {
    color: #333333;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: #ffffff;
    color: #0051A1;
    padding: 10px 15px;
    border: 2px solid #0051A1;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    color: #333333;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: #0051A1;
}

/* Course Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Course Details */
.course-details {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
}

.course-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 20px;
    color: #666666;
    font-size: 14px;
}

.course-content {
    color: #333333;
}

/* Course Pages Styles */
.quick-links-section {
    padding: 60px 0;
    background: #f8fafc;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.quick-link-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.quick-link-card:hover {
    transform: translateY(-5px);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: #0051A1;
    margin-bottom: 15px;
}

.course-count {
    color: #666;
    font-size: 14px;
}

.course-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #0051A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.featured-universities {
    padding: 80px 0;
    background: #f8fafc;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.university-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
}

.university-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0051A1 0%, #003366 100%);
    color: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Course Advice Styles */
.course-advice-services {
    padding: 80px 0;
}

.advice-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #0051A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.course-categories-advice {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-item i {
    font-size: 2.5rem;
    color: #0051A1;
    margin-bottom: 15px;
}

.consultation-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.success-stories {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.student-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Instant Offers Styles */
.instant-offers-benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #FFB800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: #0051A1;
    font-size: 2rem;
}

.how-instant-offers-work {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.featured-instant-universities {
    padding: 80px 0;
}

.universities-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #0051A1;
    background: white;
    color: #0051A1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0051A1;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.instant-programs h4 {
    color: #0051A1;
    margin: 15px 0 10px;
}

.instant-programs ul {
    list-style: none;
    padding: 0;
}

.instant-programs li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #0051A1;
    margin-bottom: 15px;
}

/* University Rankings Styles */
.rankings-overview {
    padding: 80px 0;
}

.ranking-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ranking-system {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.system-icon {
    width: 80px;
    height: 80px;
    background: #FFB800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.system-icon i {
    color: #0051A1;
    font-size: 2rem;
}

.rankings-tabs-section {
    padding: 80px 0;
    background: #f8fafc;
}

.rankings-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rankings-table th,
.rankings-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.rankings-table th {
    background: #0051A1;
    color: white;
    font-weight: 600;
}

.rank-cell {
    font-weight: bold;
    color: #0051A1;
    text-align: center;
}

.university-cell strong {
    color: #0051A1;
}

.university-cell small {
    display: block;
    color: #666;
    font-size: 12px;
}

.score-cell {
    font-weight: bold;
    color: #FFB800;
}

.subject-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.subject-category {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.subject-category h4 {
    color: #0051A1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subject-list {
    space-y: 10px;
}

.subject-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.subject-item .rank {
    background: #0051A1;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.subject-item .university {
    flex: 1;
    font-weight: 600;
}

.subject-item .country {
    color: #666;
    font-size: 14px;
}

.country-tabs-inner {
    margin-top: 30px;
}

.country-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.country-tab-btn {
    padding: 10px 20px;
    border: 2px solid #0051A1;
    background: white;
    color: #0051A1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.country-tab-btn.active,
.country-tab-btn:hover {
    background: #0051A1;
    color: white;
}

.country-tab-content {
    display: none;
}

.country-tab-content.active {
    display: block;
}

.country-universities {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.country-rankings-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.country-rank-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.country-rank-item .rank {
    background: #0051A1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.uni-info {
    flex: 1;
}

.uni-info strong {
    color: #0051A1;
}

.uni-info small {
    display: block;
    color: #666;
    font-size: 14px;
}

.global-rank {
    color: #FFB800;
    font-weight: 600;
    font-size: 14px;
}

.country-stats {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.country-stats h4 {
    color: #0051A1;
    margin-bottom: 20px;
}

.country-stats ul {
    list-style: none;
    padding: 0;
}

.country-stats li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.rankings-methodology {
    padding: 80px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.methodology-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.methodology-card h3 {
    color: #0051A1;
    margin-bottom: 20px;
}

.methodology-breakdown {
    space-y: 15px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breakdown-item .percentage {
    background: #FFB800;
    color: #0051A1;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.breakdown-item .category {
    flex: 1;
    font-weight: 600;
}

.rankings-consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, #0051A1 0%, #003366 100%);
    color: white;
    text-align: center;
}

.consultation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Find University Styles */
.university-search-section {
    padding: 80px 0;
    background: white;
}

.search-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3c72;
}

.featured-universities-section {
    padding: 80px 0;
    background: white;
}

.university-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.university-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4af37;
}

.university-logo i {
    font-size: 24px;
    color: #1e3c72;
}

.university-info h3 {
    color: #1e3c72;
    margin-bottom: 5px;
}

.university-info p {
    color: #2a5298;
    margin: 0;
}

.university-ranking {
    display: flex;
    gap: 10px;
}

.rank-badge {
    background: #d4af37;
    color: #1e3c72;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.university-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2a5298;
}

.detail-item i {
    color: #1e3c72;
}

.university-card i {
    color: #1e3c72;
}

.find-university i {
    color: #1e3c72;
}

.university-search-section i {
    color: #1e3c72;
}

.featured-universities-section i {
    color: #1e3c72;
}

.universities-by-country i {
    color: #1e3c72;
}

.comparison-tool-section i {
    color: #1e3c72;
}

.university-inquiry-form-section i {
    color: #1e3c72;
}

.popular-programs {
    margin-bottom: 20px;
}

.popular-programs h4 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.popular-programs ul {
    list-style: none;
    padding: 0;
}

.popular-programs li {
    padding: 5px 0;
    border-bottom: 1px solid #d4af37;
    font-size: 14px;
    color: #2a5298;
}

.university-actions {
    display: flex;
    gap: 10px;
}

.universities-by-country {
    padding: 80px 0;
    background: white;
}

.uni-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    overflow: hidden;
    border: 2px solid #d4af37;
}

.uni-item {
    padding: 20px;
    border-bottom: 1px solid #d4af37;
}

.uni-item h4 {
    color: #1e3c72;
    margin-bottom: 5px;
}

.uni-item p {
    color: #2a5298;
    margin: 0;
    font-size: 14px;
}

.comparison-tool-section {
    padding: 80px 0;
    background: white;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-selectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.selector-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3c72;
}

.university-inquiry-form-section {
    padding: 80px 0;
    background: white;
}

/* Scholarship Page Styles */
.scholarship-search {
    padding: 80px 0;
    background: #f8fafc;
}

.scholarship-types {
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: #0051A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.type-icon i {
    color: white;
    font-size: 2rem;
}

.scholarship-amount {
    background: #f8fafc;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: 600;
    color: #0051A1;
}

.featured-scholarships {
    padding: 80px 0;
    background: #f8fafc;
}

.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scholarship-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.scholarship-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scholarship-country {
    font-size: 14px;
    background: #f8fafc;
    padding: 5px 10px;
    border-radius: 4px;
}

.scholarship-requirements h4 {
    color: #0051A1;
    margin: 15px 0 10px;
}

.scholarship-tips {
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-number {
    width: 60px;
    height: 60px;
    background: #FFB800;
    color: #0051A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.scholarship-deadlines {
    padding: 80px 0;
    background: #f8fafc;
}

.deadlines-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.month-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.month-section h3 {
    color: #0051A1;
    margin-bottom: 20px;
    text-align: center;
}

.deadline-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.deadline-date {
    background: #FFB800;
    color: #0051A1;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.deadline-info h4 {
    color: #0051A1;
    margin-bottom: 5px;
}

.deadline-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* University Guide Styles */
.guide-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.ranking-sources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.source-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.source-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
}

.source-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.source-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.top-universities-global {
    padding: 60px 0;
    background: white;
}

.rankings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
}

.rankings-table th {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.rankings-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.rank-cell {
    background: #d4af37;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.university-cell strong {
    color: #1e3c72;
    display: block;
}

.university-cell small {
    color: #666;
}

.score-cell {
    color: #d4af37;
    font-weight: bold;
}

.country-guides {
    padding: 60px 0;
    background: #f8f9fa;
}

.country-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.country-guide-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.country-guide-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.country-flag {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.country-guide-card h3 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.guide-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 10px;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.top-universities, .guide-highlights {
    margin-bottom: 20px;
}

.top-universities h4, .guide-highlights h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.top-universities ul, .guide-highlights ul {
    list-style: none;
    padding: 0;
}

.top-universities li, .guide-highlights li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.top-universities li:before {
    content: "🏆";
    margin-right: 8px;
}

.guide-highlights li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 8px;
}

.subject-rankings {
    padding: 60px 0;
    background: white;
}

.subjects-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #1e3c72;
    background: white;
    color: #1e3c72;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.tab-content {
    display: none;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.tab-content.active {
    display: block;
}

.subject-rankings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30, 60, 114, 0.1);
    transition: all 0.3s ease;
}

.ranking-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.15);
}

.ranking-item .rank {
    background: #d4af37;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.university-info {
    flex: 1;
}

.university-info strong {
    color: #1e3c72;
    display: block;
    font-size: 16px;
}

.university-info small {
    color: #666;
    font-size: 14px;
}

.ranking-item .score {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.university-comparison {
    padding: 60px 0;
    background: #f8f9fa;
}

.comparison-selectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.selector-group label {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.guide-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #1e3c72;
}

.view-more-rankings {
    text-align: center;
    margin-top: 30px;
}

.global-rankings-table {
    overflow-x: auto;
}

.comparison-tool {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
}

.comparison-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Complete Guide Styles */
.guide-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: #0051A1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon i {
    color: white;
    font-size: 2rem;
}

.detailed-guide {
    padding: 80px 0;
    background: #f8fafc;
}

.planning-steps {
    display: grid;
    gap: 40px;
}

.step-detail {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.checklist h4 {
    color: #0051A1;
    margin: 20px 0 15px;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.research-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.research-item h4 {
    color: #0051A1;
    margin-bottom: 15px;
}

.application-guide {
    padding: 80px 0;
}

.application-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-marker {
    background: #0051A1;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #0051A1;
    margin-bottom: 15px;
}

.visa-guide {
    padding: 80px 0;
    background: #f8fafc;
}

.visa-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.visa-step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.document-list h4 {
    color: #0051A1;
    margin: 20px 0 15px;
}

.departure-guide {
    padding: 80px 0;
}

.departure-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.checklist-category {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.checklist-category h3 {
    color: #0051A1;
    margin-bottom: 20px;
}

.guide-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0051A1 0%, #003366 100%);
    color: white;
    text-align: center;
}

/* Study Destinations & Steps Styling */
.study-destination-hero, .study-steps-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.study-destination-hero h1, .study-steps-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.study-destination-hero p, .study-steps-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.study-destination-content, .study-steps-content {
    padding: 80px 0;
}

.destination-overview h2, .step-overview h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.key-benefits {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.key-benefits h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.key-benefits li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 30px;
    color: #333;
    font-weight: 500;
}

.key-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 18px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.course-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.course-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.course-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.inquiry-form-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
    border: 2px solid #d4af37;
    position: sticky;
    top: 120px;
}

.inquiry-form-card h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.inquiry-form .form-group {
    margin-bottom: 15px;
}

.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.inquiry-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-form button:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

.quick-facts {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.quick-facts h4 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 14px;
}

.quick-facts strong {
    color: #1e3c72;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    margin-bottom: 25px;
    border-left: 5px solid #d4af37;
}

.benefit-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.story-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
}

.story-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.story-item span {
    color: #d4af37;
    font-weight: 600;
}

.next-steps, .resources-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.next-steps h4, .resources-list h4 {
    color: #1e3c72;
    margin-bottom: 20px;
}

.next-steps a, .resources-list a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.next-steps a:hover, .resources-list a:hover {
    color: #d4af37;
}


/* Top Header Responsive */
@media (max-width: 1024px) {
    .top-header-left {
        gap: 1rem;
    }
    
    .top-header-right {
        gap: 1.5rem;
    }
    
    .find-us-dropdown span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-service-section {
        display: none !important;
    }
    
    .mobile-quick-access {
        display: none !important;
    }
    
    .mobile-quick-access-bottom {
        display: none !important;
    }
    
    body {
        padding-top: 130px;
    }
    
    .header {
        top: 40px;
    }
    
    .top-header-mobile {
        display: none;
    }
    
    .mobile-quick-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: white;
        font-size: 0.7rem;
        padding: 5px;
        min-width: 60px;
    }
    
    .mobile-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .mobile-nav-item:hover {
        color: #fff3cd;
    }
    
    .study-destination-hero h1, .study-steps-hero h1 {
        font-size: 2.5rem;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .key-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-card {
        position: static;
        margin-top: 40px;
    }
    
    .course-filters {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .country-universities {
        grid-template-columns: 1fr;
    }
    
    .university-header {
        flex-direction: column;
        text-align: center;
    }
    
    .university-details {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .consultation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .visa-process {
        grid-template-columns: 1fr;
    }
    
    .research-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 4px 0;
        font-size: 0.75rem;
    }
    
    .top-header-left {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .top-header-right {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .find-us-dropdown span {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .find-us-menu {
        min-width: 150px;
        font-size: 0.8rem;
    }
}
/* IELTS Pages Styling - Golden, White, Blue Only */
.ielts-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.ielts-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ielts-overview {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    margin-bottom: 50px;
    border: 2px solid #d4af37;
}

.ielts-overview h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.ielts-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ielts-section {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.12);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.ielts-section:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
}

.ielts-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.ielts-icon i {
    color: white;
    font-size: 2.2rem;
}

.ielts-section h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.ielts-band-scores {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 15px;
    margin: 60px 0;
    border: 2px solid #d4af37;
}

.band-score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.band-score-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.band-score-item:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.band-number {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 15px;
    border: 3px solid #d4af37;
}

.test-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.test-module {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.test-module:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.12);
    transform: translateY(-3px);
}

.test-module h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ielts-preparation {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    margin: 60px 0;
    text-align: center;
}

.prep-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.prep-strategy {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.prep-strategy:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #d4af37;
    transform: translateY(-3px);
}

.prep-strategy h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.ielts-form-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.15);
    border: 3px solid #d4af37;
    position: sticky;
    top: 120px;
}

.ielts-form-card h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}

.ielts-form input, .ielts-form select, .ielts-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 18px;
}

.ielts-form input:focus, .ielts-form select:focus, .ielts-form textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
}

.ielts-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ielts-form button:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

/* Two-column form layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
}
/* Modern Program Cards Styling */
.program-categories {
    margin: 60px 0;
}

.program-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-btn {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.program-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transition: all 0.4s ease;
    z-index: 0;
}

.program-btn:hover::before {
    left: 0;
}

.program-btn:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
    color: white;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 4px solid #d4af37;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.program-btn:hover .program-icon {
    background: white;
    border-color: white;
}

.program-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.program-btn:hover .program-icon i {
    color: #1e3c72;
}

.program-btn h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.program-btn:hover h3 {
    color: white;
}

.program-btn p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.program-btn:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.duration {
    background: #d4af37;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.4s ease;
}

.program-btn:hover .duration {
    background: white;
    color: #1e3c72;
}

.program-details {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid #d4af37;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.program-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.program-details-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.program-details-info span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1e3c72;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.program-details-info i {
    color: #d4af37;
    margin-right: 5px;
}

.top-destinations {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.top-destinations strong {
    color: #d4af37;
}

@media (max-width: 768px) {
    .program-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .program-btn {
        padding: 30px 20px;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .program-icon i {
        font-size: 1.8rem;
    }
    
    .program-btn h3 {
        font-size: 1.4rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .program-buttons {
        grid-template-columns: 1fr;
    }
}
/* After Receiving Offer Page Styling */
.post-offer-checklist {
    margin: 50px 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.checklist-item {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.checklist-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.checklist-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.checklist-icon i {
    color: white;
    font-size: 2.2rem;
}

.checklist-item h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.checklist-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.checklist-item li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #333;
}

.checklist-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist-item {
        padding: 25px 20px;
    }
    
    .checklist-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .checklist-icon i {
        font-size: 1.8rem;
    }
}
/* Prepare to Depart Page Styling */
.departure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.departure-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.departure-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.departure-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.departure-icon i {
    color: white;
    font-size: 2rem;
}

.departure-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.departure-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.departure-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
    color: #333;
}

.departure-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Settle and Succeed Page Styling */
.settling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.settling-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.settling-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.settling-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.settling-icon i {
    color: white;
    font-size: 2rem;
}

.settling-card h4 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.settling-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.settling-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
    color: #333;
}

.settling-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Where What to Study Page Styling */
.study-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.study-destination-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.study-destination-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.destination-flag {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.destination-flag i {
    color: white;
    font-size: 2rem;
}

.study-destination-card h4 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.study-destination-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.destination-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.destination-stats span {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1e3c72;
    font-weight: 500;
}

.destination-stats i {
    color: #d4af37;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .departure-grid,
    .settling-grid,
    .study-destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .departure-card,
    .settling-card,
    .study-destination-card {
        padding: 25px 20px;
    }
    
    .departure-icon,
    .settling-icon,
    .destination-flag {
        width: 60px;
        height: 60px;
    }
    
    .departure-icon i,
    .settling-icon i,
    .destination-flag i {
        font-size: 1.6rem;
    }
    
    .destination-stats {
        flex-direction: column;
        gap: 10px;
    }
}
/* Success Strategies and Cultural Adaptation Styling */
.success-strategies {
    margin: 60px 0;
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 15px;
}

.success-strategies h3 {
    color: #1e3c72;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.strategy-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.strategy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.strategy-icon i {
    color: white;
    font-size: 2rem;
}

.strategy-card h4 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.strategy-card li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #333;
    line-height: 1.5;
}

.strategy-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

.cultural-adaptation {
    margin: 60px 0;
}

.cultural-adaptation h3 {
    color: #1e3c72;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.adaptation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.adaptation-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.adaptation-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.adaptation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.adaptation-icon i {
    color: white;
    font-size: 2.2rem;
}

.adaptation-card h4 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.adaptation-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .strategies-grid,
    .adaptation-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-card,
    .adaptation-card {
        padding: 25px 20px;
    }
    
    .strategy-icon,
    .adaptation-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .strategy-icon i,
    .adaptation-icon i {
        font-size: 1.6rem;
    }
    
    .success-strategies {
        padding: 30px 20px;
    }
}
/* Additional Destination Page Styles */
.education-system, .visa-information, .living-costs, .scholarships, .career-prospects, .application-timeline {
    padding: 60px 0;
    background: white;
}

.education-system:nth-child(even), .visa-information:nth-child(even), .living-costs:nth-child(even), .scholarships:nth-child(even), .career-prospects:nth-child(even) {
    background: #f8f9fa;
}

.system-grid, .visa-grid, .costs-grid, .scholarship-grid, .career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.system-card, .visa-card, .cost-card, .scholarship-card, .career-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.system-card:hover, .visa-card:hover, .cost-card:hover, .scholarship-card:hover, .career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
}

.system-card h3, .visa-card h3, .cost-card h3, .scholarship-card h3, .career-card h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

.timeline-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    border-left: 5px solid #d4af37;
}

.timeline-date {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 180px;
    text-align: center;
}

.timeline-content h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #2a5298;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-date {
        min-width: auto;
        width: 100%;
    }
}
/* Student Essentials Page Styles */
.decision-helper {
    padding: 60px 0;
    background: white;
}

.helper-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.2);
}

.helper-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.helper-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.helper-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-left: 30px;
}

.student-tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.tool-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-icon i {
    font-size: 2.2rem;
    color: white;
}

.tool-content h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tool-content p {
    color: #2a5298;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-btn {
    background: #d4af37;
    color: #1e3c72;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.tool-btn:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

.community-section {
    padding: 80px 0;
    background: white;
}

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

.community-text h2 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.community-text p {
    color: #2a5298;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.community-visual {
    flex-shrink: 0;
}

.community-icons {
    display: flex;
    gap: 20px;
}

.community-icons i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 3px solid #d4af37;
}

.action-plan {
    padding: 80px 0;
    background: #f8f9fa;
}

.action-plan h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.step-content h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: #2a5298;
    margin-bottom: 25px;
    line-height: 1.6;
}

.step-btn {
    background: #d4af37;
    color: #1e3c72;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-btn:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

.study-steps {
    padding: 80px 0;
    background: white;
}

.study-steps h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.steps-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 2px solid #d4af37;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
}

.accordion-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.accordion-header i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 25px;
    background: #f8f9fa;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 25px;
    color: #2a5298;
}

.accordion-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.essentials-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.essentials-content h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.essential-category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.essential-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.essential-category h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}

.essential-category h3 i {
    color: #d4af37;
    font-size: 1.5rem;
}

.essential-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.essential-category li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #2a5298;
    line-height: 1.5;
}

.essential-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .helper-card {
        flex-direction: column;
        text-align: center;
    }
    
    .helper-icon {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .community-content {
        flex-direction: column;
        text-align: center;
    }
    
    .community-icons {
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-card {
        flex-direction: column;
        text-align: center;
    }
}
/* Cost of Living Page Styles */
.cost-overview {
    padding: 80px 0;
    background: white;
}

.cost-overview h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.country-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    overflow: hidden;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.country-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 25px;
    text-align: center;
}

.country-header i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.country-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cost-breakdown {
    padding: 25px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item span {
    color: #2a5298;
    font-weight: 500;
}

.cost-item strong {
    color: #1e3c72;
    font-weight: 600;
}

.budget-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.budget-tips h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.tip-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.tip-card h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tip-card p {
    color: #2a5298;
    line-height: 1.6;
    margin: 0;
}

.calculator-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.calculator-section h2 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.calculator-section p {
    color: #2a5298;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Living Abroad Support Page Styles */
.support-overview {
    padding: 80px 0;
    background: white;
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.support-category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.support-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.support-category h3 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-category h3 i {
    color: #d4af37;
    font-size: 1.8rem;
}

.support-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-category li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #2a5298;
    line-height: 1.5;
}

.support-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Scholarships Page Styles */
.scholarships-overview {
    padding: 80px 0;
    background: white;
}

.scholarship-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.scholarship-type {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.scholarship-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.scholarship-icon i {
    font-size: 2.2rem;
    color: white;
}

.scholarship-type h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.scholarship-type p {
    color: #2a5298;
    line-height: 1.6;
    margin-bottom: 20px;
}

.scholarship-amount {
    background: #d4af37;
    color: #1e3c72;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .countries-grid,
    .tips-grid,
    .support-categories,
    .scholarship-types {
        grid-template-columns: 1fr;
    }
    
    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* IELTS Pages Comprehensive Styling */

/* IELTS Main Page Styles */
.content-section {
    padding: 80px 0;
    background: white;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-section p {
    color: #2a5298;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section blockquote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 20px 30px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.enhanced-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.enhanced-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid #d4af37;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-subtitle {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.enhanced-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.enhanced-card p {
    color: #2a5298;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3c72;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.card-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.card-badge {
    background: #d4af37;
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ielts-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.tag-item {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #d4af37;
    color: #1e3c72;
    transform: translateY(-2px);
}

.ielts-types {
    margin: 80px 0;
}

.ielts-types h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.test-format {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

.test-format h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    border-left: 4px solid #d4af37;
}

.feature-item i {
    font-size: 1.5rem;
    color: #1e3c72;
    width: 30px;
    text-align: center;
}

.feature-item span {
    color: #2a5298;
    font-weight: 500;
}

.why-choose-us {
    margin: 80px 0;
}

.why-choose-us h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.why-choose-us blockquote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 20px 30px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.preparation-program {
    margin: 80px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.preparation-program h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.preparation-program .program-features {
    max-width: 800px;
    margin: 0 auto;
}

.preparation-program .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #d4af37;
    backdrop-filter: blur(10px);
}

.preparation-program .feature-item i {
    color: #d4af37;
}

.preparation-program .feature-item span {
    color: white;
}

/* IELTS Booking Page Styles */
.ielts-booking-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.ielts-hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.ielts-badge {
    background: #d4af37;
    color: #1e3c72;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
}

.badge-text {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.test-types-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.test-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
}

.test-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.test-card .card-icon i {
    font-size: 2.2rem;
    color: white;
}

.test-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-purpose {
    color: #2a5298;
    font-size: 1rem;
    margin-bottom: 25px;
}

.card-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.detail-info strong {
    display: block;
    color: #1e3c72;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.detail-info span {
    color: #2a5298;
    font-size: 0.95rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #d4af37;
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.booking-tags .tag-item {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.booking-tags .tag-item:hover {
    background: #d4af37;
    color: #1e3c72;
    transform: translateY(-2px);
}

.test-centers {
    margin: 80px 0;
}

.test-centers h3 {
    color: #1e3c72;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.center-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.center-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.center-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.center-card h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.center-card p {
    color: #2a5298;
    margin-bottom: 20px;
}

.center-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.center-features span {
    color: #666;
    font-size: 0.9rem;
}

.booking-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    margin-top: 60px;
}

.booking-form h3 {
    color: #1e3c72;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.booking-form .btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form .btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .enhanced-cards,
    .test-types-modern,
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ielts-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .card-stats {
        justify-content: center;
    }
    
    .ielts-tags,
    .booking-tags {
        justify-content: center;
    }
}
/* Login Protection Styles */
.login-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: #1e3c72;
    text-decoration: underline;
}

.cost-item strong i.fa-lock {
    color: #d4af37;
    margin-right: 8px;
}

.locked-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-style: italic;
}

.locked-content i {
    color: #d4af37;
}

.pricing-locked {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #d4af37;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 10px 0;
}

.pricing-locked i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    display: block;
}

.pricing-locked p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.pricing-locked .login-btn {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-locked .login-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}
/* About Page Responsive Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-content .enhanced-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.about-content .enhanced-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-content .enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.enhanced-card:hover .card-image img {
    transform: scale(1.1);
}

.values-section {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

.values-section h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-quote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 25px 35px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    font-weight: 500;
}

.values-section .enhanced-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.values-section .enhanced-card {
    background: white;
    text-align: center;
    padding: 30px 25px;
}

.testimonials-section {
    margin: 80px 0;
}

.testimonials-section h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-section .enhanced-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonials-section .enhanced-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 35px 30px;
    position: relative;
}

.testimonials-section .card-icon {
    background: #d4af37;
    margin-bottom: 25px;
}

.testimonials-section .card-icon i {
    color: #1e3c72;
}

.testimonials-section p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid #d4af37;
    padding-top: 20px;
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .about-content .enhanced-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .values-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .about-content .enhanced-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .about-content .enhanced-card {
        padding: 25px 20px;
    }
    
    .card-image {
        height: 180px;
        margin-bottom: 20px;
    }
    
    .values-section {
        margin: 60px 0;
        padding: 30px 20px;
    }
    
    .values-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .section-quote {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .values-section .enhanced-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-section .enhanced-card {
        padding: 25px 20px;
    }
    
    .testimonials-section {
        margin: 60px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-section .enhanced-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-section .enhanced-card {
        padding: 30px 25px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stat-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .about-content .enhanced-card {
        padding: 20px 15px;
    }
    
    .card-image {
        height: 160px;
        margin-bottom: 15px;
    }
    
    .values-section {
        padding: 25px 15px;
    }
    
    .section-quote {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .values-section .enhanced-card {
        padding: 20px 15px;
    }
    
    .testimonials-section .enhanced-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .enhanced-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .enhanced-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .card-description {
        font-size: 0.9rem;
        padding: 12px;
        margin-bottom: 20px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content .enhanced-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .values-section .enhanced-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-section .enhanced-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .about-content .enhanced-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .values-section .enhanced-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .testimonials-section .enhanced-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}
/* Home Page Comprehensive Responsive Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 67px 0 38px;
    text-align: center;
    position: relative;
    min-height: 34vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stylish-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-accent {
    font-size: 2.8rem;
    font-weight: 300;
    color: #d4af37;
    font-style: italic;
}

.hero-main {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    position: relative;
    margin: 0;
}

.hero-main::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 2px;
}

.hero-highlight {
    font-size: 2.2rem;
    font-weight: 600;
    color: #d4af37;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Hero Features Section */
.hero-features {
    padding: 80px 0;
    background: white;
}

.hero-details {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-details p {
    font-size: 1.2rem;
    color: #2a5298;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-quote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 25px 35px;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(30, 60, 114, 0.1);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #d4af37;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.highlight-item i {
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #2a5298;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-quote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 20px 30px;
    border-radius: 12px;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 700px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview .service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-preview .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transition: all 0.4s ease;
    z-index: 0;
}

.services-preview .service-card:hover::before {
    left: 0;
}

.services-preview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
    color: white;
}

.services-preview .service-card > * {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.services-preview .service-card i {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: block;
}

.services-preview .service-card:hover i {
    color: #d4af37;
}

.services-preview .service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.services-preview .service-card:hover h3 {
    color: white;
}

.services-preview .service-card p {
    color: #2a5298;
    line-height: 1.6;
    font-size: 1rem;
}

.services-preview .service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: white;
}

.destinations h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #2a5298;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
    transition: all 0.4s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
}

.destination-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 1.8rem;
    text-align: center;
}

.destination-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1e3c72;
    font-weight: 600;
}

.destination-content p {
    color: #2a5298;
    line-height: 1.5;
    margin: 0;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #f8f9fa;
}

.comparison h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
    max-width: 900px;
    margin: 3rem auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.brighterbee-col {
    background: rgba(212, 175, 55, 0.2);
    border-left: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature {
    font-weight: 600;
    color: #1e3c72;
    justify-content: flex-start;
    text-align: left;
}

.brighterbee {
    background: rgba(212, 175, 55, 0.1);
    color: #1e3c72;
    font-weight: 600;
    border-left: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
}

.others {
    color: #666;
}

.brighterbee i.fa-check {
    color: #d4af37;
    margin-right: 0.5rem;
}

.others i.fa-times {
    color: #dc3545;
    margin-right: 0.5rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
}

.comparison-cta h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.comparison-cta p {
    color: #2a5298;
    margin-bottom: 1.5rem;
}

/* Consultation Section */
.consultation {
    padding: 100px 0;
    background: white;
}

.consultation h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.consultation-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #2a5298;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-form {
    max-width: 800px;
    margin: 3rem auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #2a5298;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.consultation-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #2a5298;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.testimonial p {
    font-style: italic;
    color: #2a5298;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial h4 {
    color: #1e3c72;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 58px 0 29px;
        min-height: 29vh;
    }
    
    .hero-stylish-heading {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-accent {
        font-size: 2rem;
    }
    
    .hero-main {
        font-size: 3rem;
    }
    
    .hero-highlight {
        font-size: 1.6rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-features {
        padding: 60px 0;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .highlight-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-preview,
    .destinations,
    .comparison,
    .consultation,
    .testimonials {
        padding: 80px 0;
    }
    
    .services-preview h2,
    .destinations h2,
    .comparison h2,
    .consultation h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem;
    }
    
    .brighterbee-col,
    .brighterbee {
        border-left: none;
        border-right: none;
        border-top: 2px solid #d4af37;
        border-bottom: 2px solid #d4af37;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 48px 0 24px;
    }
    
    .hero-accent {
        font-size: 1.8rem;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-highlight {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-preview .service-card {
        padding: 2rem 1.5rem;
    }
    
    .destination-image {
        height: 180px;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .consultation-form {
        padding: 1.5rem 1rem;
    }
    
    .section-quote,
    .hero-quote {
        padding: 15px 20px;
        font-size: 1rem;
    }
}
/* Universal Page Styling Fixes */

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-overview .services-details {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-overview .services-details p {
    font-size: 1.2rem;
    color: #2a5298;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-highlights {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.services-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.services-highlights .highlight-item:hover {
    background: #d4af37;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.services-highlights .highlight-item i {
    font-size: 1.3rem;
}

.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-content {
    text-align: center;
    max-width: 450px;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-section h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.logo-section span {
    color: #d4af37;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 500;
}

.human-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
    position: relative;
    border: 3px solid #d4af37;
}

.human-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
}

.contact-form-container h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-form-container p {
    color: #2a5298;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-quote {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1e3c72;
    padding: 15px 25px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group label {
    display: block;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
}

/* Universal Card Fixes */
.enhanced-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.enhanced-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.enhanced-card:hover .card-image img {
    transform: scale(1.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 3px solid #d4af37;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-subtitle {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.enhanced-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.enhanced-card p {
    color: #2a5298;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3c72;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.card-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.card-badge {
    background: #d4af37;
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section Universal */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .services-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-highlights .highlight-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .enhanced-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enhanced-card {
        padding: 25px 20px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .map-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .enhanced-card {
        padding: 20px 15px;
    }
    
    .card-image {
        height: 160px;
        margin-bottom: 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .enhanced-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .enhanced-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .card-description {
        font-size: 0.9rem;
        padding: 12px;
        margin-bottom: 20px;
    }
}
/* Living Abroad Support Page Styles */
.support-overview {
    padding: 80px 0;
    background: white;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-section p {
    color: #2a5298;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.support-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 60px;
}

.support-tags .tag-item {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.support-tags .tag-item:hover {
    background: #d4af37;
    color: #1e3c72;
    transform: translateY(-2px);
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.support-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.support-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.support-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.support-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-card p {
    color: #2a5298;
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.support-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #2a5298;
}

.support-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.emergency-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
    text-align: center;
}

.emergency-card .card-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid white;
}

.emergency-card .card-icon i {
    font-size: 2.2rem;
    color: #1e3c72;
}

.emergency-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-item strong {
    color: #d4af37;
}

.success-stories {
    margin-top: 80px;
}

.success-stories h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.story-card p {
    font-style: italic;
    color: #2a5298;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-author {
    border-top: 2px solid #d4af37;
    padding-top: 15px;
    margin-top: 20px;
}

.story-author strong {
    display: block;
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.story-author span {
    color: #666;
    font-size: 0.95rem;
}

/* Scholarships Page Styles */
.scholarships-overview {
    padding: 80px 0;
    background: white;
}

.scholarships-overview h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

.scholarship-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.scholarship-type {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.scholarship-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.scholarship-icon i {
    font-size: 2.2rem;
    color: white;
}

.scholarship-type h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.scholarship-type p {
    color: #2a5298;
    line-height: 1.6;
    margin-bottom: 20px;
}

.scholarship-amount {
    background: #d4af37;
    color: #1e3c72;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-categories,
    .scholarship-types,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .support-tags {
        justify-content: center;
    }
    
    .emergency-section {
        padding: 30px 20px;
    }
    
    .emergency-contacts {
        grid-template-columns: 1fr;
    }
    
    .support-card,
    .scholarship-type,
    .story-card {
        padding: 25px 20px;
    }
}
/* Events Page Comprehensive Styles */
.destination-spotlight {
    padding: 80px 0;
    background: white;
}

.destination-spotlight h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.spotlight-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.spotlight-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #d4af37;
}

.spotlight-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.spotlight-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.spotlight-card p {
    color: #2a5298;
    line-height: 1.6;
}

/* Table Styles */
.top-courses, .top-universities {
    padding: 80px 0;
    background: #f8f9fa;
}

.top-courses h2, .top-universities h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.courses-table, .universities-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.12);
    border: 2px solid #d4af37;
}

.courses-table table, .universities-table table {
    width: 100%;
    border-collapse: collapse;
}

.courses-table th, .universities-table th {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.courses-table td, .universities-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #2a5298;
    font-weight: 500;
}

.courses-table tr:last-child td, .universities-table tr:last-child td {
    border-bottom: none;
}

.courses-table tr:hover, .universities-table tr:hover {
    background: #f8f9fa;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background: white;
}

.faqs-section h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.faq-item h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #2a5298;
    line-height: 1.6;
    margin: 0;
}

/* Events Grid */
.events-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.events-content h2 {
    color: #1e3c72;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details {
    padding: 30px;
    flex: 1;
}

.event-details h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-details p {
    color: #2a5298;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-details p i {
    color: #d4af37;
    width: 16px;
}

.event-details .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .spotlight-grid,
    .faq-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-table, .universities-table {
        overflow-x: auto;
    }
    
    .courses-table table, .universities-table table {
        min-width: 600px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 20px;
        min-width: auto;
    }
    
    .event-date .day {
        font-size: 1.5rem;
    }
    
    .event-details {
        padding: 25px 20px;
    }
    
    .spotlight-card,
    .faq-item {
        padding: 25px 20px;
    }
}