
   
        /* Contact Section Styles */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(to bottom, #f8fbf8, #ffffff);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #6b9746;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .hosts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .host-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .host-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .host-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .host-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .host-card:hover .host-image img {
            transform: scale(1.05);
        }

        .host-content {
            padding: 1.5rem;
        }

        .host-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .host-role {
            color: #6b9746;
            font-weight: 500;
            margin-bottom: 1rem;
            display: block;
        }

        .host-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .host-services {
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .service-list {
            list-style-type: none;
        }

        .service-list li {
            padding: 0.3rem 0;
            color: #555;
            display: flex;
            align-items: center;
        }

        .service-list li:before {
            content: "•";
            color: #6b9746;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: 0.5em;
        }

        .contact-methods {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #6b9746;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background: #f8fbf8;
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

        .contact-button:hover {
            background: #6b9746;
            color: white;
            transform: translateY(-5px);
        }

        .contact-button:hover .contact-icon {
            background: white;
            color: #6b9746;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: #6b9746;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .contact-button h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-button p {
            text-align: center;
            font-size: 0.9rem;
        }

        .contact-info {
            text-align: center;
            margin-top: 2rem;
            text-align: left;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            color: #555;
        }

        .contact-info a {
            color: #6b9746;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #5a8040;
            text-decoration: underline;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 400px;
            opacity: 0;
            transform: translateY(30px);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact {
                padding: 0rem 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .hosts {
                grid-template-columns: 1fr;
            }
            
            .host-card {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .contact-methods {
                padding: 1.5rem;
            }
            
            .contact-buttons {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 300px;
            }
        }

