/* ======================================================== */
/* ==== STYLES FOR ABOUT PAGE (about.css) ==== */
/* ======================================================== */

.about-wrapper {
    padding: 3rem 4rem; /* More horizontal padding for a premium feel */
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}
section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}
section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Keep body text left-aligned for readability */
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid transparent; /* To prevent jumping on hover */
}
.value-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-block; /* To allow transforms */
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Connect Section */
.connect-section {
    text-align: center;
    background: var(--input-bg);
    border-radius: 15px;
    padding: 3rem;
}
.connect-section p {
    text-align: center; /* Center the connect text */
}

@media(max-width: 600px) {
    .about-wrapper {
        padding: 2rem;
    }
}