

        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #2c5aa0;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: #1e3d6f;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

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

        .btn-outline:hover {
            background-color: #2c5aa0;
            color: white;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index:2;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: white;
            max-width: 700px;
            margin: 0 auto;

        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c5aa0;
            margin: 20px auto;
            border-radius: 2px;
        }

        /* Overview Section */
        .overview-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .overview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232c5aa0" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
            background-size: cover;
            pointer-events: none;
        }

        /* Hero Section */
        .overview-hero {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
            animation: fadeInDown 0.6s ease;
        }

        .hero-badge i {
            color: #ffd700;
        }

        .overview-main-title {
            font-size: 3.2rem;
            color: #1e3d6f;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .title-underline {
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #ff6b35, #2c5aa0);
            margin: 20px auto;
            border-radius: 3px;
        }

        .overview-lead {
            font-size: 1.3rem;
            color: #555;
            line-height: 1.8;
            font-weight: 400;
            animation: fadeIn 1s ease;
        }

        /* Content Grid */
        .overview-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
            align-items: start;
        }

        /* Description Cards */
        .overview-description {
            display: flex;
            flex-direction: column;
            gap: 25px;
            height: 100%;
        }

        .overview-visual {
            display: flex;
            flex-direction: column;
            gap: 25px;
            height: 100%;
        }

        .description-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-left: 5px solid #2c5aa0;
            animation: slideInLeft 0.6s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .description-card .card-image {
            margin-top: auto;
        }

        .description-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(44, 90, 160, 0.2);
            border-left-color: #ff6b35;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
        }

        .card-icon i {
            color: white;
            font-size: 1.8rem;
        }

        .description-card h3 {
            font-size: 1.5rem;
            color: #1e3d6f;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .description-card p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .card-image {
            width: 100%;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 15px;
            position: relative;
        }

        .card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(44, 90, 160, 0.1) 100%);
            pointer-events: none;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        /* Key Points Card */
        .key-points-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .key-points-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0 0;
        }

        .key-points-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .key-points-list li:last-child {
            border-bottom: none;
        }

        .key-points-list li:hover {
            padding-left: 10px;
            background: rgba(44, 90, 160, 0.05);
            border-radius: 8px;
        }

        .key-points-list li i {
            color: #2c5aa0;
            font-size: 1.1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .key-points-list li span {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        .key-points-list li strong {
            color: #1e3d6f;
            font-weight: 700;
        }

        /* Horizontal Timeline in Description Card */
        .timeline-horizontal {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 12px;
        }

        .timeline-h-item {
            flex: 1;
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .timeline-h-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(44, 90, 160, 0.15);
        }

        .step-h-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
        }

        .timeline-h-item strong {
            display: block;
            color: #1e3d6f;
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .timeline-h-item span {
            display: block;
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .timeline-h-arrow {
            color: #2c5aa0;
            font-size: 1.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .timeline-horizontal {
                flex-direction: column;
                gap: 15px;
            }

            .timeline-h-arrow {
                transform: rotate(90deg);
                font-size: 1.5rem;
            }

            .timeline-h-item {
                width: 100%;
            }
        }

        /* Visual Stats Card */
        .visual-stats-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            animation: slideInRight 0.6s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .stats-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .stats-header i {
            color: #2c5aa0;
            font-size: 1.5rem;
        }

        .stats-header h3 {
            font-size: 1.4rem;
            color: #1e3d6f;
            font-weight: 700;
            margin: 0;
        }

        .stats-grid-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .stat-box:hover {
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            border-color: #ff6b35;
            transform: scale(1.05);
        }

        .stat-box:hover .stat-icon {
            background: white;
        }

        .stat-box:hover .stat-icon i {
            color: #2c5aa0;
        }

        .stat-box:hover .stat-number-overview,
        .stat-box:hover .stat-label-overview {
            color: white;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .stat-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .stat-info {
            flex: 1;
        }

        .stat-number-overview {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2c5aa0;
            margin-bottom: 2px;
            transition: all 0.3s ease;
        }

        .stat-label-overview {
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* Timeline Card */
        .timeline-card {
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
            animation: slideInRight 0.8s ease;
        }

        .timeline-card h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .timeline-card h4 i {
            color: #ffd700;
        }

        .timeline-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .timeline-step {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            position: relative;
        }

        .timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 16px;
            top: 40px;
            width: 3px;
            height: calc(100% + 5px);
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .step-dot {
            width: 35px;
            height: 35px;
            background: #ff6b35;
            border-radius: 50%;
            flex-shrink: 0;
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
        }

        .step-content {
            flex: 1;
            padding-top: 2px;
        }

        .step-content strong {
            display: block;
            color: white !important;
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .step-content span {
            display: block;
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* CTA Banner */
        .overview-cta-banner {
            background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
            padding: 40px 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
            animation: fadeInUp 1s ease;
        }

        .overview-cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .cta-content h3 {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
        }

        .cta-content h3 i {
            color: #ffd700;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .cta-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .badge-item {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .badge-item:hover {
            background: white;
            color: #2c5aa0;
            transform: translateY(-3px);
        }

        .badge-item i {
            color: #ffd700;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Override animations for right column cards to maintain consistent direction */
        .overview-visual .description-card {
            animation: slideInRight 0.6s ease;
        }

        /* Responsive Design for Overview */
        @media (max-width: 1024px) {
            .overview-content-grid {
                grid-template-columns: 1fr;
            }

            .overview-cta-banner {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .cta-badges {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .overview-main-title {
                font-size: 2.2rem;
            }

            .overview-lead {
                font-size: 1.1rem;
            }

            .stats-grid-overview {
                grid-template-columns: 1fr;
            }

            .overview-cta-banner {
                padding: 30px 25px;
            }

            .cta-content h3 {
                font-size: 1.3rem;
            }

            .cta-badges {
                flex-direction: column;
                width: 100%;
            }

            .badge-item {
                width: 100%;
                justify-content: center;
            }
        }

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

        .overview-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .overview-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }
        

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 24px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

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

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

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

        .header-contain {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        
       
        .hero-section {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
        }

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

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

           /* Hero 2: Split Layout with Image */
           .hero-4 {
            background-color: #f0f5ff;
            color: #333;
        }

        .hero-4 .container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .hero-4 .hero-content {
            flex: 1;
        }

        .hero-4 .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .geometric-pattern {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morph 8s ease-in-out infinite;
            box-shadow: 0 20px 40px rgba(44,90,160,0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            padding: 40px;
        }

        @keyframes morph {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
            100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }


        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            color: #2c5aa0;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Features Section */
        .features {
            background-color: #f0f5ff;
        }

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

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #2c5aa0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c5aa0;
        }


        /* Benefits */
        
        .unified-benefits-section {
            max-width: 1300px;
            margin: 60px auto 0;
            background: white;
            border-radius: 25px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            position: relative;
        }

        .section-header {
            background: linear-gradient(135deg, #1e3d6f 0%, #2c5aa0 100%);
            color: white;
            padding: 70px 50px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            background-position: center;
        }

       

        .section-title h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .section-title p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            opacity: 0.9;
        }

        .title-accent {
            color: #ff6b35;
        }

        .benefits-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
        }

        .benefit-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            border-bottom: 1px solid #eef2f7;
        }

        .benefit-row:last-child {
            border-bottom: none;
        }

        .benefit-content {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .benefit-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: #ff6b35;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
        }

        .benefit-title {
            font-size: 2rem;
            color: #1e3d6f;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
        }

        .benefit-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .benefit-features {
            margin: 25px 0;
        }

        .benefit-features li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: #444;
            line-height: 1.6;
        }

        .benefit-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2c5aa0;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .benefit-stats {
            display: flex;
            gap: 25px;
            margin: 30px 0;
        }

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

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #2c5aa0;
            margin-bottom: 5px;
        }

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

        .benefit-visual {
            position: relative;
            overflow: hidden;
        }

        .benefit-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .benefit-row:hover .benefit-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(44, 90, 160, 0.2), rgba(30, 61, 111, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .benefit-row:hover .image-overlay {
            opacity: 1;
        }

        .benefit-icon {
            color: white;
            font-size: 4rem;
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }

        .benefit-row:hover .benefit-icon {
            transform: scale(1);
        }

        .highlight-tag {
            background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-top: 10px;
        }

        .testimonial {
            background: #f8fafc;
            border-left: 4px solid #ff6b35;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #2c5aa0;
            font-size: 0.95rem;
        }

        /* 行の順序を交互に変更 */
        .benefit-row:nth-child(even) {
            direction: rtl;
        }

        .benefit-row:nth-child(even) .benefit-content {
            direction: ltr;
        }

        /* 国際貢献セクションの特別スタイル */
        .global-impact {
            background: linear-gradient(135deg, #1e3d6f 0%, #2c5aa0 100%);
            color: white;
        }

        .global-impact .benefit-content {
            color: white;
        }

        .global-impact .benefit-title {
            color: white;
        }

        .global-impact .benefit-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .global-impact .benefit-features li:before {
            color: #ff6b35;
        }

        .global-impact .benefit-features li {
            color: rgba(255, 255, 255, 0.9);
        }

        .global-impact .stat-value {
            color: white;
        }

        .global-impact .stat-label {
            color: rgba(255, 255, 255, 0.8);
        }

        .global-impact .highlight-tag {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        /* レスポンシブデザイン */
        @media (max-width: 1024px) {
            .benefit-row {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .benefit-row:nth-child(even) {
                direction: ltr;
            }
            
            .benefit-visual {
                height: 400px;
                order: -1;
            }
            
            .benefit-content {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .section-header {
                padding: 50px 30px 40px;
            }
            
            .section-title h1 {
                font-size: 2.3rem;
            }
            
            .benefit-title {
                font-size: 1.7rem;
            }
            
            .benefit-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-value {
                font-size: 1.7rem;
            }
            .overview-bottom-image{
                display:none;
            }
        }

        /* アニメーション */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefit-content {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Process Section */
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: #2c5aa0;
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: #2c5aa0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            border: 5px solid white;
            box-shadow: 0 0 0 3px #2c5aa0;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #2c5aa0;
        }

        /* Eligibility Section */
        .eligibility {
            background-color: white;
        }

        .eligibility-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .eligibility-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .eligibility-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .eligibility-list {
            flex: 1;
        }

        .eligibility-list ul li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .eligibility-list ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #2c5aa0;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #f0f5ff;
            margin-top: 60px;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }

        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid #2c5aa0;
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #2c5aa0;
        }

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

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

        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .cta .btn {
            background-color: white;
            color: #2c5aa0;
        }

        .cta .btn:hover {
            background-color: #ff6b35;
            color: white;
        }

        /* Footer */
        footer {
            background-color: #1a2b4c;
            color: white;
            padding: 60px 0 30px;
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #ff6b35;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a:hover {
            color: #ff6b35;
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #ff6b35;
            transform: translateY(-3px);
        }

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

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .eligibility-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .header-contain {
                flex-direction: column;
                padding: 15px 0;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 15px;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-btns, .cta-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }

            .overview-bottom-image {
                display: none;
            }
        }

/* Testimonials Section */
.testimonials-intro {
    color: #334155;
}

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

.cta-text-white {
    color: white;
}
