
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1aca7f;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #086b41 0%, #1aca7f 50%, #1aca7f 100%);
            color: white;
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            background: linear-gradient(45deg, #fff, #f8f9fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::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;
        }

        .nav-links a:hover::before {
            left: 100%;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* Sections */
        section {
            padding: 120px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1aca7f 0%, #0b7347 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,2 4,7 4,17 14,22 24,17 24,7" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-button {
            background: linear-gradient(45deg, #1aca7f, #086b41);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(240,147,251,0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(240,147,251,0.5);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #1aca7f 0%, #086b41 50%, #ffa8a8 100%);
            color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .about-achievements {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .achievement-card {
            background: rgba(255,255,255,0.15);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .achievement-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.25);
        }

        .achievement-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .achievement-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .about-image {
            background: rgba(255,255,255,0.15);
            height: 500px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            padding: 2rem;
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .services h2 {
            text-align: center;
            color: #1aca7f;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .services-subtitle {
            text-align: center;
            color: #34495e;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(45deg, #1aca7f, #086b41);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #1aca7f, #086b41);
            border-radius: 50%;
            margin: 0 auto 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 15px 30px rgba(240,147,251,0.3);
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h3 {
            color: #1aca7f;
            margin-bottom: 1.5rem;
            font-size: 1.7rem;
            font-weight: 600;
        }

        .service-card p {
            color: #7f8c8d;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .faq h2 {
            text-align: center;
            color: #1aca7f;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .faq-subtitle {
            text-align: center;
            color: #34495e;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.8;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 2.5rem;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.15);
        }

        .faq-question {
            background: linear-gradient(45deg, #086b41, #1aca7f);
            color: white;
            padding: 2rem;
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.3rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: linear-gradient(45deg, #1aca7f, #086b41);
        }

        .faq-answer {
            padding: 2.5rem;
            display: none;
            background: white;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #1aca7f;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, #086b41 0%, #1aca7f 100%);
            color: white;
        }

        .contact h2 {
            text-align: center;
            color: white;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .contact-subtitle {
            text-align: center;
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            margin-bottom: 3rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 3rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: white;
            font-weight: 600;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s;
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
        }

        .contact-info {
            background: rgba(255,255,255,0.1);
            padding: 3rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: white;
            font-weight: 600;
        }

        .contact-item {
            margin-bottom: 2.5rem;
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #1aca7f, #086b41);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1.5rem;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: white;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .contact-details p {
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000 0%, #34495e 100%);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 2rem;
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(45deg, #1aca7f, #086b41);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s;
            padding: 0.5rem 0;
            display: inline-block;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #1aca7f;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

        .footer-popup-links {
            margin-top: 2rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-popup-links a {
            background: linear-gradient(45deg, rgba(240,147,251,0.2), rgba(245,87,108,0.2));
            color: #1aca7f;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid rgba(240,147,251,0.3);
        }

        .footer-popup-links a:hover {
            background: linear-gradient(45deg, #1aca7f, #086b41);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240,147,251,0.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: white;
            margin: 3% auto;
            padding: 3rem;
            border-radius: 30px;
            width: 90%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .close {
            position: absolute;
            right: 2rem;
            top: 2rem;
            color: #bdc3c7;
            font-size: 2.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .close:hover {
            color: #e74c3c;
            transform: scale(1.1);
        }

        .modal h2 {
            color: #1aca7f;
            margin-bottom: 2.5rem;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content,
            .form-row {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-achievements {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 10% auto;
                padding: 2rem;
            }

            .footer-popup-links {
                flex-direction: column;
                align-items: center;
            }
        }