/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5rem;
    gap: 4rem;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 600px;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-section h2 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-section p a {
    text-decoration: none;
    color: var(--primary-color);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    border: 0.5px solid var(--primary-color);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    cursor: pointer;
    border-color: var(--primary-color-hover);
    box-shadow: 0 0 0 1.5px var(--primary-color-hover);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: #333;
}

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

.team-section {
    text-align: center;
    margin-top: 4rem;
}

.team-section h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 0.9rem;
    color: var(--primary-color);
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    width: 90%;
    max-width: 350px;
    border-radius: 10px;
    border-color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    color: white;
    border-color: var(--primary-color-hover);
    background-color: var(--primary-color-hover);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-section {
        gap: 3rem;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: 0.9rem;
    }

    .about-section {
        flex-direction: column;
        gap: 2rem;
    }

    .about-section:nth-child(even) {
        flex-direction: column;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.9rem;
    }

    .value-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .value-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.98rem;
    }
}