/* Hero-About Wrapper Styles */
.hero-about-wrapper {
    background: linear-gradient(135deg, #f5fefe, #ebffff);
    color: #333;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-about-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,30 L100,100 L0,100 Z" fill="rgba(243,156,18,0.1)"/></svg>') top left / 100% 100%;
    pointer-events: none;
}

.hero-about-wrapper .container {
    position: relative;
    z-index: 2;
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #f39c12, #008080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.7;
}

.about-section {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: 2rem;
    color: #00d4d4;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero-about-wrapper {
        padding: 90px 0 60px;
    }
    
    .hero-section {
        margin-bottom: 50px;
    }
    
    .hero-section h1 {
        font-size: 2.4rem;
    }
    
    .hero-section p {
        font-size: 1.05rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
}