/* --- Page Header (Shared Style) --- */
.page-header {
    background: var(--background-grey);
    padding: 100px 0;
    text-align: center;
}
.page-header h1 { color: var(--primary-color); }
.page-header p { color: var(--secondary-color); max-width: 800px; margin: 10px auto 0 auto; line-height: 1.8; }

/* --- Action Cards Section --- */
.action-cards-section {
    padding-top: 30px;
    padding-bottom: 80px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.action-card {
    background: var(--background-light);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.action-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1;
}

.action-card h3 {
    margin-bottom: 15px;
}

.action-card p {
    color: #666;
    flex-grow: 1; /* Pushes the button to the bottom */
    margin-bottom: 30px;
}

/* Secondary button style for consultation */
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--background-light);
}
.btn-secondary:hover {
    background-color: #333;
    color: var(--background-light);
}


.action-card:hover .btn-secondary {
    background-color: var(--secondary-color);
}

/* --- Contact Details & Map Section --- */
.contact-details-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--background-grey);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr 1.2fr; /* Give map a bit more space */
    }
}

.contact-info-block {
    background: var(--background-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-info-block h3 {
    margin-top: 0;
    font-size: var(--step-2);
    color: var(--secondary-color);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--background-grey);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-list li:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.map-block iframe {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
