.info-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
}

.info-content {
    line-height: 1.7;
    color: #1f2937;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.info-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.info-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
    margin-bottom: 16px;
}

.info-content p {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 16px;
}

.info-content p.intro {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 40px;
    font-weight: 400;
}

.info-content strong {
    font-weight: 600;
    color: #000;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.action-buttons a {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: #1f2937;
    border-color: #1f2937;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-page {
        padding: 30px 16px;
    }

    .info-content h1 {
        font-size: 2rem;
    }

    .info-content h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .info-content p {
        font-size: 1rem;
    }

    .info-content p.intro {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: column;
        margin-top: 40px;
    }

    .action-buttons a {
        width: 100%;
        text-align: center;
    }
}
