/* ==========================================================================
   About Us Section Styles
   ========================================================================== */

.gh-about-us {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

:is(.dark *) .gh-about-us {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.gh-about-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section Header */
.gh-about-header {
    text-align: center;
    margin-bottom: 48px;
}

.gh-about-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--color-darkgrey);
    margin-bottom: 16px;
}

:is(.dark *) .gh-about-title {
    color: white;
}

.gh-about-divider {
    width: 80px;
    height: 4px;
    background: rgb(37, 99, 235);
    margin: 0 auto;
}

/* Cards */
.gh-about-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 48px;
    margin-bottom: 40px;
}

:is(.dark *) .gh-about-card {
    background: #1f2937;
}

@media (max-width: 768px) {
    .gh-about-card {
        padding: 32px 24px;
    }
}

.gh-about-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.gh-about-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    color: rgb(37, 99, 235);
    margin-right: 16px;
    stroke-width: 2;
}

:is(.dark *) .gh-about-icon {
    color: rgb(96, 165, 250);
}

.gh-about-card-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--color-darkgrey);
    margin: 0;
}

:is(.dark *) .gh-about-card-title {
    color: white;
}

@media (max-width: 768px) {
    .gh-about-card-title {
        font-size: 22px !important;
    }
}

.gh-about-card-content {
    color: var(--color-secondary-text);
    font-size: 17px;
    line-height: 1.75;
}

.gh-about-card-content p {
    margin-bottom: 24px;
}

.gh-about-card-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.gh-about-list {
    list-style: disc;
    padding-left: 32px;
    margin: 24px 0;
    color: var(--color-secondary-text);
}

.gh-about-list li {
    margin-bottom: 12px;
    line-height: 1.75;
}

.gh-about-list li:last-child {
    margin-bottom: 0;
}

/* Two Column Grid */
.gh-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .gh-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Disclosure Notice */
.gh-about-disclosure {
    display: inline-block;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 12px;
    padding: 32px;
    margin: 48px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

:is(.dark *) .gh-about-disclosure {
    background: rgba(250, 204, 21, 0.05);
}

.gh-disclosure-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.gh-disclosure-icon {
    width: 32px;
    height: 32px;
    color: rgb(202, 138, 4);
    margin-right: 12px;
    stroke-width: 2;
}

:is(.dark *) .gh-disclosure-icon {
    color: rgb(250, 204, 21);
}

.gh-disclosure-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-darkgrey);
    margin: 0;
}

:is(.dark *) .gh-disclosure-title {
    color: white;
}

.gh-disclosure-text {
    color: var(--color-secondary-text);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
}

/* Closing Section */
.gh-about-closing {
    text-align: center;
    margin-top: 64px;
}

.gh-closing-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--color-darkgrey);
    margin-bottom: 32px;
}

:is(.dark *) .gh-closing-title {
    color: white;
}

.gh-closing-content {
    max-width: 700px;
    margin: 0 auto 32px;
}

.gh-closing-content p {
    color: var(--color-secondary-text);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.gh-closing-content p:last-child {
    margin-bottom: 0;
}

.gh-closing-icon {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.gh-closing-icon svg {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: rgb(37, 99, 235);
    stroke-width: 2;
}

:is(.dark *) .gh-closing-icon svg {
    background: rgba(96, 165, 250, 0.1);
    color: rgb(96, 165, 250);
}
