/* About Page Styles */

.about-page {
    background-color: #ffffff;
}

/* Vision & Mission */
.vision-mission {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.vision-mission h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.vision-mission p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333333;
}

/* The Problem */
.the-problem-container {
    background: var(--gradient-blue);
    padding: 62px 96px;
    border-radius: 40px;
}

.the-problem-container h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
}

.the-problem-container .problem-intro {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    text-wrap: pretty;
    padding: 0 200px;
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
    margin: 2.5rem 0;
}

.problem-box {
    background: var(--gradient-blue-dark);
    padding: 72px 57px;
    border-radius: 30px;
    align-content: center;
}

.problem-box p {
    font-size: 1.5rem;
    color: #ffffff;
}

.the-problem-container .problem-conclusion {
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    margin-top: 2.5rem;
    padding: 0 200px;
    margin-bottom: 0px;
}

/* Our Solution */
.our-solution {
    margin: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-content {
    display: flex;
    align-items: flex-end;
    gap: 70px;
}

.solution-image {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 40px;
    position: relative;
    flex-shrink: 0;
}

.solution-image.left {
    transform: rotate(-5deg);
}

.solution-image.right {
    transform: rotate(5deg);
}

.solution-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark-blue);
    border-radius: 40px;
    z-index: -1;
}

.left .solution-image-overlay {
    left: 20px;
    top: 20px;
}

.right .solution-image-overlay {
    left: 20px;
    bottom: 20px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
}

.solution-image.right img {
    transform: scaleX(-1);
}

.solution-text {
    max-width: 800px;
}

.solution-text-box {
    width: 100%;
    border-radius: 30px;
    padding: 45px 37px;
}

.solution-text h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.solution-text-box h3 {
    color: #ffffff;
    font-size: 2.4rem;
    margin-bottom: 0;
}

.solution-divider {
    border: none;
    border-top: 2px solid #ffffff;
    margin: 20px 0;
    opacity: 0.8;
}

.solution-text-box p {
    font-size: 1.5rem;
}

.solution-text p {
    font-size: 1.5rem;
    color: #333333;
}

.solution-text-box.bg-blue-dark {
    text-align: center;
}

.toolkit-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
}

.toolkit-features li {
    font-size: 1.5rem;
    color: #ffffff;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    position: relative;
    line-height: 1.6;
}

.toolkit-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Expected Results */
.expected-results {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.expected-results h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3.75rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.result-box {
    background: var(--bg-light);
    padding: 60px 40px;
    padding-top: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

.result-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    text-align: left;
    min-height: 90px;
    margin-bottom: 0;
    align-content: center;
}

.result-divider {
    border: none;
    border-top: 2px solid var(--primary-dark-blue);
    margin: 0 0 20px 0;
    opacity: 0.3;
}

.result-box p {
    font-size: 1.5rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}
