<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 61, 71, 0.9), rgba(26, 61, 71, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a3d47" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 20px;
            color: #d4e0e3;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }
        
        /* Contact Info Cards */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .info-card {
            background: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            display: flex;
            align-items: start;
            gap: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background: #4aa89c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            flex-shrink: 0;
        }
        
        .info-content h3 {
            color: #1a3d47;
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .info-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 5px;
        }
        
        .info-content a {
            color: #4aa89c;
            text-decoration: none;
            font-weight: 500;
        }
        
        .info-content a:hover {
            text-decoration: underline;
        }
        
        /* Contact Form */
        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .contact-form h2 {
            color: #1a3d47;
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .contact-form .subtitle {
            color: #666;
            margin-bottom: 35px;
            font-size: 16px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #1a3d47;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4aa89c;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-btn {
            width: 100%;
            background: #4aa89c;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #3d9b8f;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            background: white;
        }
        
        .map-container {
            width: 100%;
            height: 450px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
        }
        
        /* Hours Section */
        .hours-section {
            background: #1a3d47;
            padding: 60px 0;
            color: white;
            text-align: center;
        }
        
        .hours-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .hours-section h2 {
            font-size: 36px;
            margin-bottom: 40px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hours-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
        }
        
        .hours-card h3 {
            color: #4aa89c;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .hours-card p {
            color: #d4e0e3;
            line-height: 1.8;
        }
       
        
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            

        }
        
        @media (max-width: 768px) {     
            .contact-form {
                padding: 30px;
            }
            
        }
    </style>
	
