body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.about-hero {
    background: #111;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.hero-content h1:hover {
    color: #ff6600;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.8;
}

.about-section {
    padding: 60px 20px;
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    transition: box-shadow 0.3s ease;
}

.about-block:hover {
    box-shadow: 0px 8px 20px rgba(255, 102, 0, 0.15);
}

.about-block.light-background {
    background-color: #f8f9fa;
}

.about-text {
    max-width: 800px;
    text-align: left;
}

.about-text h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.about-text h2:hover {
    color: #ff6600;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff6600, #ff8533);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-text h2:hover::after {
    transform: scaleX(1);
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.about-text p:hover {
    color: #333;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about-block {
        flex-direction: column;
        padding: 40px 15px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 15px;
    }

    .about-text p {
        font-size: 15px;
    }
}
