/* Premium About Page Enhancements */

/* Company Overview Section */
.company-overview-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-content {
    max-width: 600px;
}

.overview-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.overview-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
}

.overview-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-700);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.overview-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 1.5rem;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(5, 150, 105, 0.1);
}

.placeholder-icon {
    width: 6rem;
    height: 6rem;
    color: rgba(5, 150, 105, 0.3);
}

/* Our Approach Section */
.approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
    position: relative;
}

.approach-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.1);
    transform: translateY(-4px);
}

.approach-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(5, 150, 105, 0.08);
    line-height: 1;
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.approach-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-600);
}

/* Services Overview Grid Enhancement */
.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 2px solid var(--slate-100);
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 8px 20px -5px rgba(5, 150, 105, 0.15);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.service-overview-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-600);
}

/* Responsive */
@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .overview-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .overview-title {
        font-size: 3rem;
    }
}