
/* Banner adjustment */
.compact-banner {
    height: 120px !important;
}

.compact-banner h1 {
    font-size: 42px !important;
}

/* Main Container Layout */
.contact-container {
    display: flex;
    padding: 20px 40px;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Column Styles */
.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-form-column {
    flex: 1.5;
    min-width: 400px;
}

/* Info Section Styling - More compact */
.info-section {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    font-size: 1.2rem;
}

/* More compact information formatting */
.compact-info p {
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 0.95rem;
}

.info-section a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section a:hover {
    color: #004080;
    text-decoration: underline;
}

/* Contact Form Styling */
.contact-form-column h2 {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}

.compact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.form-group {
    flex: 1;
}

.full-width {
    width: 100%;
}

.compact-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 0.9rem;
}

.required {
    color: #cc0000;
}

.compact-form input[type="text"],
.compact-form input[type="email"],
.compact-form input[type="tel"],
.compact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem; 
}

.compact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
}

.submit-btn {
    background-color: #4a5d23;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3a4a1c;
}

.message {
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}
        
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
        
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info-column,
    .contact-form-column {
        min-width: 100%;
    }
    
    .compact-banner {
        height: 100px !important;
    }
    
    .compact-banner h1 {
        font-size: 36px !important;
    }
}