/* About Section */
.about-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.about-container, .mission-section, .story-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-text, .mission-text, .story-text {
    flex: 1;
    padding: 20px;
}

.about-text h1, .mission-text h2, .story-text h2 {
    color: #0654A3;
    font-size: 32px;
    margin-bottom: 15px;
}

.about-text p, .mission-text p, .story-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.about-image, .mission-image, .story-image {
    flex: 1;
    padding: 20px;
}

.about-image img, .mission-image img, .story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-image {
    position: relative;
}

.about-image::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 100px;
    height: 100px;
    /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23F28C38"><path d="M0 0h100v100H0z"/></svg>') no-repeat; */
    background-size: contain;
    z-index: -1;
}