:root {
    --navy: #6e8893;
    --rose: #c08e87;
    --light-rose: #f8e3e2;
    --light-bg: #f9f9f9;
    --text: #333;
}

header {
    background-color: var(--light-rose);
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--rose);
    border-top: 5px solid var(--rose);
}

.site-logo {
    display: block;
    margin: 0 auto 28px;
    max-width: min(260px, 85vw);
    height: auto;
}

.header-text {
    color: var(--navy);
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
}

.workshop-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-right: 8px solid var(--rose);
}

.workshop-card h3 {
    color: var(--rose);
    margin-top: 0;
    font-size: 1.7rem;
}

.section-label {
    font-weight: bold;
    color: var(--navy);
    display: block;
    margin-top: 15px;
}

.photo-therapy-info {
    background: var(--navy);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.about-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    border: 1px solid #eee;
}

.about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid var(--navy);
    object-fit: cover;
}

.about-text {
    flex: 2;
    min-width: 300px;
    border-right: 5px solid var(--rose);
    padding-right: 25px;
}

@media (max-width: 600px) {
    .about-section {
        padding: 20px;
        text-align: center;
    }

    .about-text {
        border-right: none;
        padding-right: 0;
        padding-left: 20px;
    }
}