/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--green) 0%, #8fb015 100%);
    position: relative;
    padding: 100px 0 !important;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.about-section .section-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-section .section-title::after {
    background: white;
}

.decorative-pattern-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image:
            radial-gradient(circle at 25% 50%, var(--pink) 0, var(--pink) 25px, transparent 25px),
            radial-gradient(circle at 75% 50%, var(--light-blue) 0, var(--light-blue) 25px, transparent 25px),
            radial-gradient(circle at 50% 50%, var(--yellow) 0, var(--yellow) 25px, transparent 25px);
    background-size: 200px 80px;
    background-position: 0 0, 100px 0, 50px 40px;
    background-repeat: repeat-x;
    transform: translateY(50%);
}

.decorative-pattern-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image:
            radial-gradient(circle at 25% 50%, white 0, white 25px, transparent 25px),
            radial-gradient(circle at 75% 50%, white 0, white 25px, transparent 25px);
    background-size: 200px 80px;
    background-position: 0 0, 100px 0;
    background-repeat: repeat-x;
    transform: translateY(-50%) scaleY(-1);
}
