body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    color: #333;
}

.about-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    color: #2f6fed;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-block {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.about-block:hover {
    transform: translateY(-4px);
}

.about-block h2 {
    color: #2f6fed;
    margin-bottom: 15px;
    font-size: 28px;
}

.about-block p,
.about-block ul {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.about-block ul {
    list-style: disc;
    padding-left: 20px;
}

.about-quote {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(90deg, #e4edff, #f4f8ff);
    border-left: 6px solid #2f6fed;
    border-radius: 12px;
    font-style: italic;
}

.about-quote blockquote {
    margin: 0 0 10px;
    font-size: 22px;
}

.about-quote cite {
    font-size: 16px;
    color: #666;
}

.with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.with-image.reverse {
    flex-direction: row-reverse;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p,
    .about-block p,
    .about-block ul {
        font-size: 16px;
    }

    .about-block,
    .with-image {
        padding: 20px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-content {
        gap: 40px;
    }

    .with-image,
    .with-image.reverse {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .about-text {
        min-width: auto;
        width: 100%;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }
}

.svg-decor {
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.svg-decor svg {
    display: block;
    width: 100%;
    height: 100px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-block,
.with-image,
.about-quote {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.about-block.animate,
.with-image.animate,
.about-quote.animate {
    animation: fadeUp 0.8s forwards;
}

