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

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        .hero {
            background: linear-gradient(rgba(101, 177, 179, 0.8), rgba(101, 177, 179, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%235bbdb5" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            color: white;
        }

        .hero h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.1em;
            opacity: 0.95;
        }

        .container {
            max-width: 1200px;
            margin: -100px auto 50px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;
        }

        .contact-info {
            
            padding: 40px;
            border-radius: 10px;
            
        }

        .contact-info h2 {
            color: #5bbdb5;
            margin-bottom: 10px;
            font-size: 1.8em;
        }

        .contact-info p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #5bbdb5;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .icon-circle svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .contact-info .contact-details h3 {
            color: #333;
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        .contact-info .contact-details p {
            color: #666;
            font-size: 0.9em;
            margin: 3px 0;
        }

        .social-media {
            margin-top: 30px;
        }

        .social-media h3 {
            color: #333;
            margin-bottom: 15px;
        }

        .contact-info .social-icons {
            display: flex;
            gap: 10px;
        }

        .contact-info .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #5bbdb5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .contact-info .social-icon:hover {
            transform: translateY(-3px);
            background: #bed000;
        }

        .contact-info .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            color: #333;
            margin-bottom: 30px;
            font-size: 1.8em;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.95em;
            transition: border-color 0.3s;
        }

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

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

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: #5bbdb5;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background 0.3s;
        }

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

        .map-section {
            width: 100%;
            height: 400px;
            margin-top: 50px;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                margin-top: -50px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2em;
            }
        }
