.hero-sectionC {
    background: linear-gradient(rgba(47, 133, 90, 0.9), rgba(47, 133, 90, 0.9)), url('/api/placeholder/1920/400');
    background-size: cover;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 0;
    width: 100%;
}

/* Desktop version */
@media (min-width: 992px) {
    .contact-info {
        margin-left: 250px;
    }
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    background-color: var(--light-bg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: var(--text-color);
    word-break: break-word;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: white;
}

.map-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    background-color: #eee;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* Improved tablet responsiveness */
@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    
    .hero-section h2 {
        font-size: 2em;
    }
    
    .hero-section p {
        font-size: 1.1em;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 24px;
    }
}

/* Improved mobile landscape responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
        width: 100%;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .hero-section h2 {
        font-size: 1.8em;
    }
    
    .hero-section p {
        font-size: 1em;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        padding: 15px 10px;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .contact-details {
        width: 100%;
        text-align: center;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 20px;
    }
    
    .hero-section h2 {
        font-size: 1.5em;
    }
    
    .hero-section p {
        font-size: 0.9em;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .contact-info, .contact-form {
        padding: 15px;
    }
    
    .contact-method {
        padding: 12px 8px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-details h4 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .hero-section h2 {
        font-size: 1.3em;
    }
}

.map-wrapper {
padding: 20px;
background: white;
}

.map-wrapper iframe {
border-radius: 10px;
width: 100%;
}

@media (max-width: 768px) {
.location-container {
padding: 0 20px;
}

.map-wrapper iframe {
height: 300px;
}

.address-details i {
    font-size: 30px;
}

.address-details h3 {
    font-size: 20px;
}

.address-details p {
    font-size: 14px;
}
}

@media (max-width: 480px) {
.map-wrapper {
    padding: 10px;
}

.map-wrapper iframe {
    height: 250px;
}
}

@media (max-width: 360px) {
.map-wrapper iframe {
    height: 200px;
}

.address-details i {
    font-size: 24px;
}

.address-details h3 {
    font-size: 18px;
}

.address-details p {
    font-size: 13px;
}
}

.location-container {
max-width: 1200px;
margin: 0 auto;
}

.map-info {
background: white;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
overflow: hidden;
}

.address-details {
padding: 30px;
text-align: center;
background: var(--primary-color);
color: white;
}

.address-details i {
font-size: 40px;
margin-bottom: 15px;
}

.address-details h3 {
font-size: 24px;
margin-bottom: 10px;
}

.address-details p {
font-size: 16px;
line-height: 1.6;
}
.section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .section-title::after {
        width: 60px;
    }
}

@media (max-width: 360px) {
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
}