/* ===================================
   About Page Styles
   =================================== */

/* Main Content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.intro {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.section {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.section p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section ul {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
}

.section ul li {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.nav-link {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #ffffff;
    color: #0ea5e9;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    border: 2px solid #0ea5e9;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
}

.nav-link:hover {
    background-color: #0ea5e9;
    color: white !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.nav-link.primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    box-shadow:
        0 8px 24px rgba(14, 165, 233, 0.3),
        0 2px 8px rgba(14, 165, 233, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.nav-link.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.nav-link.primary:hover::before {
    left: 100%;
}

.nav-link.primary:hover {
    color: white !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(14, 165, 233, 0.4),
        0 8px 16px rgba(14, 165, 233, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .intro {
        font-size: 1.125rem;
    }

    .section p,
    .section ul li {
        font-size: 1rem;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }

    .intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
    }

    .section p,
    .section ul li {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .nav-links {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}
