.about-section {
    padding: 100px 10%;
    background: #050505;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-description {
    max-width: 700px;
    margin-bottom: 50px;
    opacity: 0.8;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: 0.4s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #F37021;
}

/* IMAGE */
.about-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* CONTENT */
.about-content {
    padding: 25px;
}

.about-content h2 {
    margin-bottom: 10px;
    color: #F37021;
}

.about-content ul {
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 8px;
}

/* MOBILE */
@media(max-width:768px){
    .section-title {
        font-size: 2rem;
    }
}

/* SPLIT */
.split-section{
    margin-top: 20px;
    margin-bottom: 60px;
    display:flex;
    min-height:400px;
}
.split-img{
    flex:1;
    background-size:cover;
    background-position:center;
}
.split-text{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px;
}

/* IMAGE STRIP */
.image-strip{
    display:flex;
    margin-top: 20px;
    margin-bottom: 60px;
}
.strip-card{
    position:relative;
    flex:1;
    padding: 20px;
}
.strip-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}
.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent, black);
}

/* FLOATING */
.floating-section{
    display:flex;
    align-items:center;
    gap:50px;
    padding:100px 10%;
    margin-top: 20px;
    margin-bottom: 60px;
}
.floating-img{
    width:400px;
    border-radius:10px;
    transform:rotate(3deg);
}

/* PARALLAX */
.parallax-section{
    height:400px;
    background:url('https://cdn.britannica.com/94/192794-050-3F3F3DDD/panels-electricity-order-sunlight.jpg') center/cover fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 20px;
    margin-bottom: 60px;
}
.parallax-content{
    background:rgba(0,0,0,0.6);
    padding:40px;
}

/* CTA IMAGE */
.image-cta{
    height:400px;
    background:url('https://images.unsplash.com/photo-1558449028-b53a39d100fc?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8c29sYXJ8ZW58MHx8MHx8fDA%3D') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cta-overlay{
    text-align:center;
    background:rgba(0,0,0,0.7);
    padding:40px;
}

/* MOBILE */
@media(max-width:768px){
    .split-section{flex-direction:column;}
    .floating-section{flex-direction:column;}
    .image-strip{flex-direction:column;}
}