/* About Section Base */
.about-section {
    background-color: #E0F7FF;
}

@media (prefers-color-scheme: dark) {
    .about-section {
        background-color: rgb(31, 41, 55);
    }
}

/* Container */
.about-container {
    max-width: 1280px;
    padding: 2rem 1.5rem;
    margin: 0 auto;
    row-gap: 3rem;
}

@media (min-width: 1024px) {
    .about-container {
        row-gap: 5rem;
        padding: 6rem 1.5rem;
    }
}

/* Grid Layout */
.about-grid {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .about-grid {
        gap: 4rem;
    }
}

/* Content Styles */
.about-content {
    color: rgb(107, 114, 128);
}

@media (min-width: 640px) {
    .about-content {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

@media (prefers-color-scheme: dark) {
    .about-content {
        color: rgb(156, 163, 175);
    }
}

/* Typography */
.about-title {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: rgb(17, 24, 39);
}

.about-subtitle {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: rgb(17, 24, 39);
}

@media (prefers-color-scheme: dark) {
    .about-title,
    .about-subtitle {
        color: rgb(255, 255, 255);
    }
}

.about-description {
    margin-bottom: 2rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .about-description {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Features List */
.about-features {
    padding-top: 2rem;
    margin: 1.75rem 0;
    row-gap: 1.25rem;
    border-top: 1px solid rgb(229, 231, 235);
    list-style: none;
}

@media (prefers-color-scheme: dark) {
    .about-features {
        border-color: rgb(55, 65, 81);
    }
}

.feature-item {
    display: flex;
    column-gap: 0.75rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(168, 85, 247);
}

@media (prefers-color-scheme: dark) {
    .feature-icon {
        color: rgb(192, 132, 252);
    }
}

.feature-text {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 500;
    color: rgb(17, 24, 39);
}

@media (prefers-color-scheme: dark) {
    .feature-text {
        color: rgb(255, 255, 255);
    }
}

/* CTA Text */
.about-cta {
    margin-bottom: 2rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .about-cta {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
