/* static/css/about.css - AMENDED */

/* --- Base Section Styling --- */
.section-padding {
    padding: 80px 0; /* Increased padding for better spacing */
}

.section-title {
  /* Remove any background‐clip gradient */
  background: none !important;

  /* Ensure the text itself is gold */
  color: #0d0e35 !important;

  /* In case -webkit-text-fill-color was used for gradient */
  -webkit-text-fill-color: #0d0e35 !important;
}



.section-subtitle {
    font-size: 1.25rem;
    /* home.css does not have --text-muted. Using --font-color (if defined and suitable) or a specific grey.
       Using a common grey value. Consider defining --text-muted-color: #6c757d; in your home.css :root */
    color: #6c757d; /* Fallback grey for muted text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem; /* More space after subtitle */
}

/* --- Hero About Section --- */
.hero-about-section {
    /* Using --primary-color. Removed --primary-color-darker as it's not in home.css */
    background: var(--primary-color);
    padding: 100px 0; /* More impactful hero */
    text-align: center;
    border-radius: 0 0 30px 30px; /* Rounded bottom corners for a modern touch */
    margin-bottom: 50px; /* Space before next section */
}
.hero-about-section h1 {
    color: var(--light-color); /* Defined in home.css */
    font-weight: 700; /* Bolder for impact */
    font-size: 3rem; /* Larger hero title */
}
.hero-about-section .lead {
    font-size: 1.35rem; /* Slightly larger lead */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85); /* Softer white for lead */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
    /* Using --secondary-color-light from home.css as it's a very light grey */
    background-color: var(--secondary-color-light);
}
.mission-vision-section .content-block {
    padding: 30px;
    background-color: var(--light-color); /* White background for content blocks */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.mission-vision-section h2 {
    color: var(--primary-color); /* Matches h2 styling in about.css */
    font-weight: 600; /* As per about.css original */
}
.mission-vision-section img { /* If you add an image */
    border-radius: 12px;
    object-fit: cover;
}

/* --- Value Proposition Section (Shiftree Advantage) --- */
.value-prop-section {
    background-color: var(--light-color); /* Section background */
}
.value-prop-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.value-prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.value-prop-card .icon-holder {
    /* No --accent-color in home.css. Using --primary-color for solid background. */
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 28px;
    transition: transform 0.3s ease;
}
.value-prop-card:hover .icon-holder {
    transform: scale(1.1) rotate(5deg);
}
.value-prop-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}
.value-prop-card p {
    /* As with .section-subtitle, using a fallback grey. */
    color: #6c757d; /* Fallback grey for muted text */
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-color); /* Default text color for the section */
    border-radius: 12px;
    padding: 60px 30px;
}
.cta-section h2 {
    color: var(--light-color); /* Explicitly for h2 */
    font-weight: 700;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.85); /* Softer white for paragraph */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-cta {
    /* No --accent-color. Styling like other light buttons on the site. */
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px; /* Or 100px to match btn-primary in home.css */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 1px solid var(--primary-color); /* Optional: add border for definition */
}
.cta-section .btn-cta:hover {
    background-color: var(--primary-color); /* Invert on hover */
    color: var(--light-color);
    border-color: var(--light-color); /* Optional: change border color on hover */
    transform: translateY(-3px);
}

/* --- FAQ Section --- */
.faq-section {
    /* Using --primary-color-light from home.css. Note: it's very transparent. */
    /* If you want a more opaque light primary, define a new variable or use --secondary-color-light */
    background-color: var(--primary-color-light);
}
.faq-section .accordion-item {
    background-color: var(--light-color);
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--light-color);
    border-radius: 8px 8px 0 0; /* Match item rounding if item is not collapsed first */
    box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: none;
}
.faq-section .accordion-button:focus {
    /* Simplified focus, as --primary-color-rgb is not defined. Uses Bootstrap's default outline or a simple one. */
    box-shadow: 0 0 0 0.25rem rgba(1, 0, 128, 0.25); /* Fallback using primary color's RGB manually */
}
.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-button::after {
    /* Default arrow color, using primary color from home.css */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#010080'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-body {
    /* Using --secondary-color (dark text) as --dark-color is not defined */
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: var(--light-color);
    border-radius: 0 0 8px 8px;
}

/* Ensure content sections don't have default card borders if 'card' class is used broadly */
.content-section.card {
    border: none;
    box-shadow: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-about-section h1 {
        font-size: 2.5rem;
    }
    .hero-about-section .lead {
        font-size: 1.15rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .value-prop-card {
        margin-bottom: 25px; /* Space between cards on mobile */
    }
}