.about-hero {
    background: linear-gradient(to bottom, #f8f1ec, #fff);
    padding: 6em 0 4em;
    text-align: center;
}

.about-title {
    font-size: 2.5em;
    color: #802440;
    margin-bottom: 0.5em;
}

.about-subtitle {
    font-size: 1.5em;
    color: #444;
}

.about-tagline {
    font-style: italic;
    margin-top: 1em;
    color: #999;
}

.about-intro {
    background: #fdf9f7;
    padding: 5em 0;
    font-family: 'Noto Serif TC', serif;
}

.about-intro .section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
}

.about-intro .about-image {
    flex: 1 1 40%;
    max-width: 500px;
    margin: 0 auto;
}

.about-intro .about-image img {
    width: 100%;
    height: auto;
    border-radius: 1em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-intro .about-text {
    flex: 1 1 50%;
    font-size: 1.05em;
    line-height: 2;
    color: #333;
}

.about-intro h3 {
    font-size: 1.8em;
    color: #802440;
    margin-bottom: 0.3em;
}

.about-intro h4 {
    font-size: 1.2em;
    color: #7a625a;
    margin-bottom: 1em;
    font-weight: normal;
    font-style: italic;
}

.about-intro p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.about-intro ul {
    padding-left: 2em;
    margin-bottom: 2em;
}

.about-services {
    background: #faf6f4;
    padding: 5em 0;
    text-align: center;
}

.about-services .section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 0.5em;
    padding: 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 18em;
    flex: 1 1 260px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    margin-bottom: 1em;
}

.service-card h3 {
    font-size: 1.2em;
    color: #802440;
    margin-bottom: 0.5em;
}

.service-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.about-style {
    padding: 4em 0;
    background: #fff;
}

.about-style h2 {
    text-align: center;
    color: #802440;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.style-points {
    list-style: none;
    max-width: 50em;
    margin: 0 auto;
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
    padding-left: 1em;
}

.style-points li {
    margin-bottom: 1em;
    position: relative;
    padding-left: 1.2em;
}

.style-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #802440;
    font-weight: bold;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-intro .section-container {
        flex-direction: column;
        text-align: left;
    }

    .about-intro .about-image,
    .about-intro .about-text {
        flex: 1 1 100%;
    }

    .about-intro h3,
    .about-intro h4 {
        text-align: center;
    }

    .about-services .section-container {
        flex-direction: column;
        align-items: center;
    }
}