* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Header and Navigation */
        header {
            background-color: #1AFF64;
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .logo i {
            font-size: 2rem;
            margin-right: 10px;
            color: #fff;
        }

        .menu-toggle {
            font-size: 1.5rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }

        .side-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background-color: #1AFF64;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
            transition: left 0.3s ease;
            z-index: 1000;
            padding-top: 60px;
        }

        .side-menu.active {
            left: 0;
        }

        .side-menu ul {
            list-style: none;
        }

        .side-menu ul li {
            padding: 15px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .side-menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            transition: transform 0.3s ease;
        }

        .side-menu ul li a:hover {
            transform: translateX(10px);
        }

        .side-menu ul li i {
            margin-right: 15px;
            width: 25px;
            text-align: center;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Contact Section */
        .contact-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-title {
            font-size: 2.8rem;
            color: #1AFF64;
            margin-bottom: 15px;
        }

        .contact-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background: white;
            border-radius: 12px;
            padding: 30px;
            
            height: fit-content;
        }

        .contact-info h2 {
            color: #1AFF64;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .contact-info p {
            margin-bottom: 25px;
            color: #444;
            line-height: 1.7;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #f0fff5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1AFF64;
            font-size: 1.2rem;
        }

        .contact-text h3 {
            color: #1AFF64;
            margin-bottom: 5px;
        }

        .contact-text p {
            margin-bottom: 0;
            color: #666;
        }

        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 30px;
        }

        .contact-form h2 {
            color: #1AFF64;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #444;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1AFF64;
            box-shadow: 0 0 0 3px rgba(26, 255, 100, 0.1);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #1AFF64;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .submit-btn:hover {
            background-color: #16e057;
        }

        .submit-btn i {
            margin-right: 8px;
        }

        .form-message {
            margin-top: 20px;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: #f0fff5;
            color: #1AFF64;
            border: 1px solid #1AFF64;
        }

        .form-message.error {
            background: #fff0f0;
            color: #ff6b6b;
            border: 1px solid #ff6b6b;
        }

        .map-container {
            margin-top: 50px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: linear-gradient(45deg, #1AFF64, #16e057);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #1AFF64;
        }

        .footer-column p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #ecf0f1;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #1AFF64;
        }

        .footer-links i {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: background-color 0.3s, transform 0.3s;
        }

        .social-icons a:hover {
            background-color: #1AFF64;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .contact-title {
                font-size: 2.2rem;
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-title {
                font-size: 1.8rem;
            }
            
            .contact-subtitle {
                font-size: 1.1rem;
            }
            
            .logo h1 {
                font-size: 1.3rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }