:root {
    --primary-color: #003366;
    --secondary-color: #1a365d;
    --accent-color: #0056b3;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    font-family: 'Georgia', serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.contact-header h1 {
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    padding: 4rem 0;
}

.contact-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-details h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.confirmation-message {
    background-color: #f1f8e9;
    border: 1px solid #c5e1a5;
    border-left: 5px solid var(--success-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.confirmation-message h5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.business-hours {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.business-hours h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
}

.footer-note {
    text-align: center;
    margin-top: 3rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact-header {
        padding: 2rem 0;
    }

    .contact-container {
        padding: 2rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}