/* About Page Styles */

.certification-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.greeting-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.greeting-image {
    text-align: center;
}

.greeting-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
}

.greeting-info {
    margin-top: 1.5rem;
}

.greeting-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.greeting-info p {
    color: var(--text-medium);
    margin: 0;
}

.greeting-message {
    font-size: 1.1rem;
    line-height: 1.8;
}

.greeting-message .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.greeting-message p {
    margin-bottom: 1.5rem;
}

.greeting-message .closing {
    margin-top: 2rem;
    font-weight: 500;
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.signature p {
    margin: 0.5rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-group h3 i {
    color: var(--primary-color);
}

.info-group p {
    color: var(--text-medium);
    line-height: 1.8;
}

.info-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-group a:hover {
    text-decoration: underline;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transport-item .badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

.location-map {
    position: relative;
}

#map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .greeting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .greeting-text {
        text-align: center;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}