/* About Page Styles */
.about-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 48px;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.about-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.about-table {
    width: 100%;
    border-collapse: collapse;
}

.about-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.about-table tr:last-child {
    border-bottom: none;
}

.about-table th,
.about-table td {
    padding: 16px 0;
    text-align: left;
    vertical-align: top;
}

.about-table th {
    width: 140px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.about-table td {
    font-size: 15px;
    color: #1a1a2e;
}

.about-table td a {
    color: #6366f1;
    text-decoration: underline;
}

.about-table td a:hover {
    color: #4f46e5;
}

/* About Text Content */
.about-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 12px;
}

.about-text ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.about-text li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.about-text strong {
    color: #1a1a2e;
}

/* Links */
.about-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .about-table th {
        width: 100px;
        font-size: 13px;
    }

    .about-table td {
        font-size: 14px;
    }

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

    .about-links .btn {
        width: 100%;
    }
}
