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

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: #2383a0;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        

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

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .start-learning-btn {
            background: #ed8936;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .start-learning-btn:hover {
            background: #dd7324;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c7a7b, #319795);
            color: white;
            padding: 6rem 2rem;
            text-align: left;
            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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero h2 {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 2rem;
            background: #f7fafc;
        }

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

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

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2d3748;
            position: relative;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: #ed8936;
        }

        .company-name {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 2rem;
        }

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

        .contact-icon {
            width: 20px;
            height: 20px;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .contact-item p {
            color: #4a5568;
            line-height: 1.6;
        }

        .social-section {
            margin-top: 2rem;
        }

        .social-section h3 {
            color: #2d3748;
            margin-bottom: 1rem;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #4a5568;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: #2c7a7b;
            color: white;
        }

        /* Contact Form */
        .contact-form-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .form-subtitle {
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

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

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c7a7b;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #ed8936;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: #dd7324;
        }

        /* Map Section */
        .map-section {
            margin-top: 4rem;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .map-container {
            width: 100%;
            height: 100%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
            font-size: 1.1rem;
        }

        /* Join Our Community Section */
        .community-section {
            background: #f7fafc;
            padding: 4rem 2rem;
            text-align: center;
        }

        .community-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .community-content p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            color: #4a5568;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 0;
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .email-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
        }

        .email-input::placeholder {
            color: #a0aec0;
        }

        .subscribe-btn {
            background: #ed8936;
            color: white;
            padding: 1rem 2rem;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: background 0.3s;
            border-radius: 0 50px 50px 0;
        }

        .subscribe-btn:hover {
            background: #dd7324;
        }

        /* Footer */
        .footer {
            background: #1a202c;
            color: white;
            padding: 4rem 2rem 2rem;
        }

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

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #ed8936;
        }

        .footer-logo {
            max-width: 300px;
        }

        .footer-logo .logo {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-logo p {
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social .social-link {
            width: 40px;
            height: 40px;
            background: #2d3748;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }

        .footer-social .social-link:hover {
            background: #ed8936;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ed8936;
        }

        .footer-contact p {
            margin-bottom: 0.8rem;
            line-height: 1.5;
            opacity: 0.8;
        }

        .footer-contact strong {
            color: #ed8936;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            opacity: 0.8;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #ed8936;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .hero {
                padding: 4rem 2rem;
                text-align: center;
            }

            .community-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .community-actions {
                flex-direction: column;
                align-items: center;
            }
        }
    