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

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

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

        .hero-section {
            background: 
                        url("contactus-hero.png");
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 0;
            margin-bottom: 40px;

        }

        .hero-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        .main-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-card {
            background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
            border-radius: 20px;
            padding: 30px;
            border: 2px solid #fdba74;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #14532d, #166534);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(20, 83, 45, 0.15);
            border-color: #14532d;
        }

        .card-title {
            color: #458860;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fdba74;
            text-align: center;
        }

        .contact-info {
            list-style: none;
            margin-bottom: 20px;
        }

        .contact-info li {
            padding: 12px 0;
            font-size: 1.1rem;
            color: #7c2d12;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .contact-info .icon {
            margin-right: 12px;
            font-size: 1.3rem;
        }

        .hours-section {
            background: linear-gradient(135deg, #338252, #3d8256);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .hours-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
        }

        .hours-info {
            text-align: center;
            font-size: 1rem;
            opacity: 0.95;
        }

        .general-contact {
            background: linear-gradient(135deg, #2e6b47, #45895f);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-top: 30px;
        }

        .general-contact h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .general-contact p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-link .icon {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .map-section {
            background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
            text-align: center;
            border: 2px solid #fdba74;
        }

        .map-placeholder {
            background: linear-gradient(135deg, #86efac, #22c55e);
            height: 200px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .main-content {
                padding: 25px;
                margin: 15px 0;
            }
            
            .general-contact {
                padding: 25px;
            }

            .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(20, 83, 45, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(20, 83, 45, 0); }
            100% { box-shadow: 0 0 0 0 rgba(20, 83, 45, 0); }
        }
