:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-overlay: rgba(30, 58, 138, 0.7);
}

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

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0a3558 0%, #1e5590 25%, #2563eb 50%, #3b82f6 75%, #60a5fa 100%);
    padding: 0.625rem 0;
    color: var(--white);
    font-size: 0.875rem;
    position: relative;
    overflow: visible;
    z-index: 1001;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1002;
}

.top-bar-label {
    font-weight: 500;
    color: var(--white);
}

.top-bar-country .country-display {
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.3s;
    position: relative;
    z-index: 1002;
}

.top-bar-country .country-display:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-country .country-dropdown {
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    z-index: 1002;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.top-bar-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.top-bar-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.top-bar-email:hover::before {
    left: 100%;
}

.top-bar-email svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.top-bar-email span {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
}

.top-bar-email:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-bar-email:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    padding: 0.25rem 0;
}

.top-bar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.top-bar-link:hover {
    opacity: 1;
}

.top-bar-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 20px;
    }
    
    .top-bar-left {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .top-bar-email {
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .top-bar-email svg {
        width: 16px;
        height: 16px;
    }
    
    .top-bar-link {
        font-size: 0.8rem;
    }
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    position: relative;
    transition: all 0.3s ease;
}

.nav-logo a {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.nav-logo:hover a {
    transform: translateY(-2px);
}

.nav-logo:hover img {
    filter: brightness(0.95);
    transform: scale(1.02);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.nav-link svg {
    transition: transform 0.3s;
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.apply-now-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apply-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.apply-now-btn {
    position: relative;
    z-index: 1;
}

.apply-now-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 53, 88, 0.2);
}

.apply-now-btn:hover::before {
    left: 0;
}

.apply-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(10, 53, 88, 0.15);
}

/* Mobile Navbar Styles */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        padding-left: 1.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-right {
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .apply-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 40px;
    }
    
    .nav-logo:hover a {
        transform: none;
    }
    
    .apply-now-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .apply-now-btn:hover {
        transform: none;
    }
}

/* Country Selector */
.country-selector {
    position: relative;
    cursor: pointer;
    z-index: 1002;
}

.country-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.country-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1002;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.country-selector.active .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    pointer-events: auto !important;
    color: var(--text-color);
}

.country-option:hover {
    background: var(--light-bg);
}

.country-option .country-flag {
    width: 20px;
    height: 20px;
}

.country-option .country-flag svg {
    width: 100%;
    height: 100%;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    height: 726px;
    overflow: visible;
    margin-bottom: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-bg {
    transition: transform 10s ease-in-out;
}

.carousel-slide.active .slide-bg {
    animation: zoomPan 15s ease-in-out infinite;
}

@keyframes zoomPan {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 3rem;
    max-width: 700px;
    margin-left: 8%;
    text-align: left;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .slide-content {
        margin-left: 5%;
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Floating Solutions */
.floating-solutions {
    position: relative;
    margin-top: -100px;
    z-index: 10;
    margin-bottom: 50px;
}

.floating-solutions .container {
    max-width: 75vw;
}

.floating-solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    max-width: 75vw;
    margin: 0 auto;
    border: 1px solid #e9ecef;
}

@media (max-width: 1200px) {
    .floating-solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.floating-solution-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.floating-solution-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.floating-solution-item:hover::before {
    width: 100%;
}

.floating-solution-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.02);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-solution-item:hover::after {
    opacity: 1;
}

.floating-solution-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.floating-solution-item h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.floating-solution-item:hover h3 {
    color: var(--primary-color);
}

.floating-solution-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

@media (max-width: 768px) {
    .floating-solutions {
        margin-top: -50px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .floating-solutions .container {
        max-width: 100%;
        padding: 0;
    }
    
    .floating-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .floating-solution-item {
        padding: 1.5rem;
        border-radius: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(30, 58, 138, 0.1);
        touch-action: manipulation;
        user-select: none;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .floating-solution-item:active {
        transform: scale(0.98);
    }
    
    .floating-solution-item:hover {
        transform: translateY(-2px);
    }
    
    .floating-solution-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }
    
    .floating-solution-item p {
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 0;
    }
}

/* Features Grid Section */
.features-grid-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image::after {
    opacity: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.feature-title {
    padding: 2rem 2rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-description {
    padding: 0 2rem;
    color: #666;
    line-height: 1.7;
    flex: 1;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.feature-btn {
    margin: 0 2rem 2rem;
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: calc(100% - 4rem);
    box-sizing: border-box;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.feature-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-image {
    position: relative;
    overflow: hidden;
}

.who-we-are-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(30%);
}

.who-we-are-image:hover .who-we-are-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.who-we-are-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.who-we-are-image:hover::after {
    opacity: 0.3;
}

.who-we-are-text {
    position: relative;
}

.who-we-are-text h2 {
    font-size: 2.75rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.who-we-are-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.who-we-are-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.who-we-are-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-fs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    margin-top: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.about-fs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.about-fs-btn:hover::before {
    left: 0;
}

.about-fs-btn span {
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.about-fs-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.about-fs-btn:hover {
    color: var(--white);
    transform: translateX(5px);
}

.about-fs-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .who-we-are {
        padding: 80px 0;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .who-we-are-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 60px 0;
    }
    
    .who-we-are-content {
        gap: 2rem;
    }
    
    .who-we-are-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .who-we-are-text p {
        font-size: 1rem;
    }
    
    .about-fs-btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* Solutions to Meet Your Needs */
.solutions-meet-needs {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.solutions-meet-needs-title {
    text-align: center;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.solutions-meet-needs-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.solution-card:hover::before {
    width: 100%;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.solution-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.solution-card:hover h3 {
    color: var(--primary-color);
}

.solution-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions-meet-needs {
        padding: 80px 0;
    }
    
    .solutions-meet-needs-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .solution-card h3 {
        font-size: 1.35rem;
    }
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Ready to start.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.5s ease;
}

.cta-banner:hover .cta-banner-bg {
    transform: scale(1.05);
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 80px 0;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

/* Masrifiyya Banner */
.masrifiyya-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.masrifiyya-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/masirfiyya_home.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.masrifiyya-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.masrifiyya-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.masrifiyya-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Masrifiyya Content Section */
.masrifiyya-content-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.masrifiyya-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.masrifiyya-content-image {
    position: relative;
    overflow: hidden;
}

.masrifiyya-content-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.masrifiyya-content-image:hover .masrifiyya-content-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.masrifiyya-content-text {
    position: relative;
}

.masrifiyya-content-text h2 {
    font-size: 2.75rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.masrifiyya-content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.masrifiyya-content-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.masrifiyya-invest-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.masrifiyya-invest-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.masrifiyya-invest-btn:hover::before {
    left: 0;
}

.masrifiyya-invest-btn span {
    position: relative;
    z-index: 1;
}

.masrifiyya-invest-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.masrifiyya-invest-btn:hover {
    color: var(--white);
    transform: translateX(5px);
}

.masrifiyya-invest-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .masrifiyya-content-section {
        padding: 80px 0;
    }
    
    .masrifiyya-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .masrifiyya-content-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .masrifiyya-content-section {
        padding: 60px 0;
    }
    
    .masrifiyya-content-wrapper {
        gap: 2rem;
    }
    
    .masrifiyya-content-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .masrifiyya-content-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .masrifiyya-invest-btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

/* Masrifiyya Solutions Grid Section */
.masrifiyya-solutions-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.masrifiyya-solutions-title {
    text-align: center;
    font-size: 2.75rem;
    color: var(--text-color);
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 2rem;
}

.masrifiyya-solutions-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.masrifiyya-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.masrifiyya-solution-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.masrifiyya-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.masrifiyya-solution-card:hover::before {
    width: 100%;
}

.masrifiyya-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.masrifiyya-solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 53, 88, 0.1), rgba(10, 53, 88, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.masrifiyya-solution-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.masrifiyya-solution-card:hover .masrifiyya-solution-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.masrifiyya-solution-card:hover .masrifiyya-solution-icon svg {
    color: var(--white);
}

.masrifiyya-solution-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.masrifiyya-solution-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.masrifiyya-solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.masrifiyya-solution-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.masrifiyya-solution-btn:hover::before {
    left: 0;
}

.masrifiyya-solution-btn {
    position: relative;
    z-index: 1;
}

.masrifiyya-solution-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.masrifiyya-solution-btn:hover {
    color: var(--white);
}

.masrifiyya-solution-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .masrifiyya-solutions-section {
        padding: 80px 0;
    }
    
    .masrifiyya-solutions-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .masrifiyya-solutions-grid {
        gap: 2rem;
    }
    
    .masrifiyya-solution-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .masrifiyya-solutions-section {
        padding: 60px 0;
    }
    
    .masrifiyya-solutions-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .masrifiyya-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .masrifiyya-solution-card {
        padding: 2rem;
    }
    
    .masrifiyya-solution-card h3 {
        font-size: 1.35rem;
    }
    
    .masrifiyya-solution-card p {
        font-size: 0.95rem;
    }
    
    .masrifiyya-solution-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Media Section */
.media-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.media-flexbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.media-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.media-item:nth-child(1) {
    border-top-color: var(--primary-color);
}

.media-item:nth-child(2) {
    border-top-color: #3b82f6;
}

.media-item:nth-child(3) {
    border-top-color: #60a5fa;
}

.media-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.12);
    border-top-width: 4px;
}

.media-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    filter: grayscale(20%);
}

.media-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.media-item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
    background: var(--white);
}

.media-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s;
    letter-spacing: -0.3px;
}

.media-item:hover h3 {
    color: var(--primary-color);
}

.media-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.media-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    margin-top: auto;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-btn::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.media-btn:hover {
    color: #1e40af;
    gap: 0.75rem;
}

.media-btn:hover::after {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .media-flexbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .media-flexbox-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .media-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-logo {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 12px;
}

.footer-section ul li a:hover::before {
    width: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    color: #999;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.footer-contact p:hover svg {
    color: var(--white);
    transform: scale(1.1);
}

.footer-contact a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-address {
    color: #999 !important;
}

.footer-address span {
    color: #999;
    transition: color 0.3s ease;
}

.footer-address:hover span {
    color: var(--white);
}

.footer-map {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.footer-map:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) contrast(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Legal Content Pages */
.legal-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.legal-updated {
    color: #999;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-intro-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.legal-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul li strong {
    color: var(--text-color);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .legal-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-map {
        margin-bottom: 2rem;
    }
    
    .footer-map iframe {
        height: 250px;
    }
    
    .legal-content-section {
        padding: 60px 0;
    }
    
    .legal-intro {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

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

.page-header p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Help & Support Section */
.help-support-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.help-support-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.help-support-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.help-support-card:hover::before {
    width: 100%;
}

.help-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.help-support-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 53, 88, 0.1), rgba(10, 53, 88, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.help-support-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.help-support-card:hover .help-support-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.help-support-card:hover .help-support-icon svg {
    color: var(--white);
}

.help-support-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.help-support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.help-support-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.help-support-link:hover {
    color: var(--primary-color);
}

.help-support-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .help-support-section {
        padding: 60px 0;
    }
    
    .help-support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .help-support-card {
        padding: 2rem;
    }
    
    .help-support-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .help-support-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .help-support-card h3 {
        font-size: 1.35rem;
    }
    
    .help-support-link {
        font-size: 1rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #666;
}

/* Application Form */
.application-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.08);
}

.form-wrapper h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

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

label {
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.required::after {
    content: ' *';
    color: #ef4444;
    font-weight: 600;
}

.optional::after {
    content: ' (optional)';
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.875rem;
}

input,
select,
textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

input:hover,
select:hover,
textarea:hover {
    border-color: #cbd5e1;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10L6 9z' fill='%23374151'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.file-hint {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-weight: 400;
}

input[type="file"] {
    padding: 0.75rem;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #2563eb;
    background: #f0f4ff;
}

input[type="file"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    border-color: #cbd5e1;
    background: #f3f4f6;
}

.checkbox-label {
    font-weight: 400;
    cursor: pointer;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: #2563eb;
    border-radius: 4px;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Rubik', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
}

@media (max-width: 768px) {
    .application-form-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .application-form {
        gap: 1.5rem;
    }
    
    input,
    select,
    textarea {
        padding: 0.875rem 1rem;
    }
}

/* Solution Content Section */
.solution-content-section {
    padding: 80px 0;
    background: var(--white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-content-image {
    width: 100%;
}

.solution-content-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.solution-content-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-content-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
    }
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.quote-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.quote-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #f0f0f0;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1e3a8a;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vision-mission-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 1.5rem 0;
}

.vision-mission-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.vision-mission-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-card ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.vision-mission-card ul li:last-child {
    border-bottom: none;
}

.vision-mission-card ul li svg {
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
}

/* Aspirations Section */
.aspirations-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.aspirations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.aspirations-text {
    margin-bottom: 3rem;
}

.aspirations-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.aspirations-text p:last-child {
    margin-bottom: 0;
}

.aspirations-contact {
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    margin-top: 2rem;
}

.aspirations-contact p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.aspirations-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.aspirations-contact a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .aspirations-section {
        padding: 60px 0;
    }
    
    .aspirations-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .aspirations-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .aspirations-contact {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Reasons to Invest Section */
.reasons-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.reasons-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.reason-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.reason-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.reason-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.reasons-cta {
    text-align: center;
    margin-top: 3rem;
}

.reasons-apply-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reasons-apply-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

@media (max-width: 968px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reason-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .reasons-section {
        padding: 60px 0;
    }
    
    .reasons-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .reason-heading {
        font-size: 1.5rem;
    }
    
    .reason-description {
        font-size: 1rem;
    }
    
    .reasons-apply-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Corporate Finance Banner Section */
.corporate-finance-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.corporate-finance-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.corporate-finance-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.corporate-finance-banner-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.corporate-finance-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .corporate-finance-banner {
        padding: 80px 0;
    }
    
    .corporate-finance-banner-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .corporate-finance-banner-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Mansa-X Banner Section */
.mansa-x-banner {
    padding: 120px 0;
    background-image: url('images/aboutb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.mansa-x-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.mansa-x-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.mansa-x-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.mansa-x-invest-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
}

.mansa-x-invest-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .mansa-x-banner {
        padding: 80px 0;
    }
    
    .mansa-x-banner-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .mansa-x-invest-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Article Section Styles */
.article-section {
    padding: 80px 0;
    background: #ffffff;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
}

.article-back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.article-back-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.article-meta {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.article-image {
    margin-bottom: 3rem;
    border-radius: 0;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.article-body {
    line-height: 1.8;
    color: #555;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.3px;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.article-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.article-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-cta-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

@media (max-width: 768px) {
    .article-section {
        padding: 60px 0;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-map-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.contact-map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 60px 0;
    }
    
    .contact-map-container iframe {
        height: 400px;
    }
}

