/* ============================================
   Page Styles - For separate pages
   ============================================ */

* {
    box-sizing: border-box;
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ee4d2d 0%, #d63031 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(238, 77, 45, 0.3);
}

.back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.back-btn:active {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0.95);
}

.page-header h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
    flex: 1;
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 24px 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0a2b8a;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a2b8a;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 18px;
    color: #0a2b8a;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}

.feature-box {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(238, 77, 45, 0.15);
}

.feature-box .feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a2b8a;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(238, 77, 45, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ee4d2d 0%, #d63031 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(238, 77, 45, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a2b8a;
}

.step-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(238, 77, 45, 0.1) 0%, rgba(255, 0, 80, 0.1) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 2px solid rgba(238, 77, 45, 0.2);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.info-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ee4d2d;
    font-weight: 900;
    font-size: 18px;
}

/* FAQ Page */
.faq-page-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(238, 77, 45, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(238, 77, 45, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2b8a;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #ee4d2d;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(238, 77, 45, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin: 8px 0;
    color: #333;
    line-height: 1.7;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(238, 77, 45, 0.15);
}

.contact-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(238, 77, 45, 0.1);
    border-radius: 12px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a2b8a;
}

.contact-details p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.contact-note {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 6px;
}

/* Contact Form */
.contact-form {
    margin-top: 24px;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0a2b8a;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9e9e9;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #fafafa;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ee4d2d;
    background: white;
    box-shadow: 0 0 0 3px rgba(238, 77, 45, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #ee4d2d 0%, #d63031 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(238, 77, 45, 0.3);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(238, 77, 45, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
    .page-content {
        padding: 40px 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .steps-section {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .page-content {
        padding: 20px 16px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 16px;
    }
}

