/* Company About Page Styles */

/* Company Section */
.company-section {
    padding: 8rem 6%;
    background-color: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
}

.company-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
}

.company-text {
    animation: fadeInSlideLeft 1s ease-out;
}

.company-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background-color: #000;
    margin-bottom: 2rem;
}

.company-intro {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.company-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 900px;
}

.company-description strong {
    font-weight: 700;
    color: #111;
}

/* Services Section */
.services-section {
    padding: 8rem 6%;
    background-color: #f9f9f9;
    color: #111;
    font-family: 'Montserrat', sans-serif;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
}

.services-text {
    animation: fadeInSlideLeft 1s ease-out;
}

.services-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.services-intro {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.services-intro strong {
    font-weight: 700;
    color: #111;
}

.services-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 900px;
}

.services-description strong {
    font-weight: 700;
    color: #111;
}

/* Values Section */
.values-section {
    padding: 8rem 6%;
    background-color: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
}

.values-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.values-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 2.5rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    animation: fadeInSlideUp 0.8s ease-out;
}

.value-card:hover {
    border-color: #111;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 6rem 6%;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #fff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: transparent;
    color: #fff;
}

/* Animations */
@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-section,
    .services-section,
    .values-section,
    .cta-section {
        padding: 4rem 5%;
    }

    .company-headline,
    .services-headline {
        font-size: 2.5rem;
    }

    .values-headline {
        font-size: 2rem;
    }

    .company-intro,
    .services-intro {
        font-size: 1.1rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .company-headline,
    .services-headline {
        font-size: 2rem;
    }

    .company-description,
    .services-description {
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
