/* Shared styles for informational pages */
@import url('homepage.css');

.info-page { background: var(--bg-gray); }

.hero-banner {
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-banner h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-banner p {
    font-size: 20px;
    opacity: 0.9;
}

section {
    background: var(--white);
    border-radius: 12px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card-large {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number-large {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.step-icon-large {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.step-card-large h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-card-large p {
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.benefit-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #7422FF, #9D5CFF);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-section, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner h1 { font-size: 32px; }
    .steps-section, .benefits-grid {
        grid-template-columns: 1fr;
    }
    section { padding: 40px 20px; }
    .cta-buttons { flex-direction: column; }
}
