/* About Beaverwood Section */
.about-beaverwood-section {
    padding: 4rem 0;
    margin: 2rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.about-content {
    padding: 0 1rem;
}

.about-title {
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS Mincho', 'Mincho', 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #6F573B;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #6F573B;
    margin: 1rem auto 0;
}

.about-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS Mincho', 'Mincho', 'Noto Serif JP', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: none;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text ul {
    text-align: left;
    max-width: 800px;
    margin: 1.5rem auto;
    padding-left: 2rem;
}

.about-text li {
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS Mincho', 'Mincho', 'Noto Serif JP', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.about-text li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for About Beaverwood */
@media (max-width: 768px) {
    .about-beaverwood-section {
        padding: 2rem 0;
        margin: 1rem 0;
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .about-content {
        padding: 0 1.5rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        padding: 0 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-text ul {
        padding-left: 1.5rem;
    }

    .about-text li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-beaverwood-section {
        padding: 1.5rem 0;
        margin: 0.5rem 0;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-text {
        padding: 0 0.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-text ul {
        padding-left: 1rem;
    }

    .about-text li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}