 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding-bottom: 40px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
       .page-header {
            background: linear-gradient(135deg, #0d3b66 0%, #1a5f7a 100%);
            color: white;
            padding: 30px 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .logo-icon {
            font-size: 2.5rem;
            color: #00b4a0;
        }

        .logo-text h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .logo-text p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .page-title {
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .page-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .location {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        /* Hero Section */
        .hero-section {
            padding: 50px 0;
            background-color: white;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        @media (min-width: 992px) {
            .hero-content {
                flex-direction: row;
                align-items: center;
            }
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            color: #0d3b66;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .hero-text h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: #00b4a0;
            border-radius: 3px;
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        .highlight {
            color: #0d3b66;
            font-weight: 600;
        }

        .hero-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        /* Main Content Section */
        .main-content {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #0d3b66;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #00b4a0;
            border-radius: 2px;
        }

        /* Reasons Section */
        .reasons-section {
            margin-bottom: 50px;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .reasons-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .reason-item {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #00b4a0;
        }

        .reason-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .reason-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #0d3b66;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .reason-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            color: #0d3b66;
            margin-bottom: 15px;
        }

        .reason-content {
            color: #555;
            line-height: 1.7;
        }

        /* Features List */
        .features-section {
            margin-bottom: 50px;
        }

        .features-list {
            list-style-type: none;
        }

        .feature-item {
            padding: 25px;
            margin-bottom: 20px;
            background-color: #f8f9fa;
            border-radius: 15px;
            border-left: 5px solid #0d3b66;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background-color: #eef7ff;
            transform: translateX(5px);
        }

        .feature-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: #0d3b66;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .feature-title i {
            color: #00b4a0;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .feature-content {
            color: #555;
            line-height: 1.7;
            padding-left: 30px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, #0d3b66 0%, #1a5f7a 100%);
            color: white;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(13, 59, 102, 0.2);
        }

        .cta-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.7;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #00b4a0;
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 180, 160, 0.3);
        }

        .cta-button:hover {
            background-color: #009688;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 180, 160, 0.4);
        }
        /* Conclusion Section */
        .conclusion-section {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .conclusion-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #0d3b66;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .conclusion-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #00b4a0;
            border-radius: 2px;
        }

        .conclusion-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .conclusion-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }

        /* Updated Contact Section (without conclusion) */
        .contact-section {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .contact-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #0d3b66;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #00b4a0;
            border-radius: 2px;
        }

        .contact-content {
            display: flex;
            justify-content: center;
        }

        .contact-address {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            max-width: 800px;
            width: 100%;
        }

        .contact-address h3 {
            font-family: 'Poppins', sans-serif;
            color: #0d3b66;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-align: center;
        }

        .address-details p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .address-details i {
            color: #00b4a0;
            margin-right: 10px;
            font-size: 1.2rem;
            width: 25px;
            margin-top: 3px;
        }

        .phone-numbers {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }

        .phone-numbers p {
            margin-bottom: 10px;
        }

        .phone-highlight {
            font-weight: 700;
            color: #0d3b66;
            font-size: 1.2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .conclusion-section, .contact-section {
                padding: 30px 20px;
            }
            
            .conclusion-title, .contact-title {
                font-size: 1.7rem;
            }
            
            .conclusion-text p {
                font-size: 1.1rem;
            }
            
            .address-details p {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .address-details i {
                margin-bottom: 5px;
            }
        }