body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f1f5f9;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.main-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 1rem 0;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

/* Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    /*border-bottom: 1px solid #e5e7eb;*/
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--page-logo-color-start) 0%, var(--page-logo-color-end) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    color: white;
    font-weight: bold;
    line-height: 1.2;
}

.conversion-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.conversion-badge {
    background: var(--page-logo-color-start);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.conversion-badge.success {
    background: #10b981;
}

.conversion-badge.warning {
    background: #f59e0b;
}

.conversion-badge.danger {
    background: #dc2626;
}

/* Info Sections */
.info-section {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.info-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.info-card p {
    color: #374151;
    margin: 0;
    font-size: 0.95rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    /*border-top: 1px solid #e5e7eb;*/
    color: #6b7280;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }
    
    .main-container {
        margin: 0.5rem 0;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .conversion-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .conversion-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-section {
        padding: 1.5rem;
    }
}
