/* Info Page Styles */

.info-page {
    padding: 4rem 0;
    background: #f8fafc;
    min-height: 70vh;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 4rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.info-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.info-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.info-section ul li::before {
    content: "•";
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.info-list li::before {
    content: "✓";
    color: #16a34a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Steps List */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.steps-list li {
    position: relative;
    padding: 1.5rem 0 1.5rem 3rem;
    border-left: 2px solid #e5e7eb;
    margin-left: 1rem;
}

.steps-list li:last-child {
    border-left: 2px solid transparent;
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.steps-list li strong {
    display: block;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.steps-list li p {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 640px) {
    .steps-list li {
        padding: 1.25rem 0 1.25rem 2rem;
    }

    .steps-list li::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-page {
        padding: 3rem 0;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .info-page {
        padding: 2rem 0;
    }

    .info-header {
        margin-bottom: 2rem;
    }

    .info-section {
        margin-bottom: 3rem;
    }

    .info-card {
        padding: 1.25rem;
    }
}
