.company-page .about-hero h1 {
    font-size: 40px;
    margin-top: 30px;
    line-height: 1.125;
    text-align: left;
    margin-bottom: 24px;
}

.company-page .about-hero p {
    margin: 15px auto 20px auto;
    width: 100%;
    text-align: left;
    font-size: 16px;
}

.about-hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.company-page section.about {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.company-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #fff;
}

.bg {
    position: absolute;
    width: 100%;
    opacity: 0.5;
    z-index: -1;
}

.team-content {
    margin: 50px 0;
    display: flex;
    gap: 40px;
}

.team-content > div {
    flex: 1;
}

.team-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.team-content p {
    text-align: left;
    font-size: 16px;
}

.team-content .hero-callout {
    margin: 30px 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.about-text {
    padding-right: 30px;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    height: 500px;
    max-height: 70vh;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
    padding: 0 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-item h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    font-size: 28px;
    color: #fff;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.about-hero h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #fff;
}

.team-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 20px 0 40px 0;
    line-height: 1.6;
}

/* Medium screens (tablets and small laptops) */
@media(max-width: 1200px) {
    .about-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .about-text h1 {
        font-size: 40px;
    }
    
    .about-image {
        height: 400px;
    }
}

/* Mobile screens */
@media(max-width: 800px) {
    .about-hero {
        width: 100%;
    }
    .company-page .hero-copy p {
        width: 100%;
    }

    .team-content {
        flex-direction: column;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        height: 300px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}