/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1F2937, #374151);
    border-radius: 20px;
    color: #FFFFFF;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FBBF24;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    margin-bottom: 4rem;
}

.content-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: #111827;
    font-weight: 700;
}

/* Yellow Background Card */
.yellow-bg {
    background: #FBBF24 !important;
}

.yellow-bg h3,
.yellow-bg p {
    color: #1F2937 !important;
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* ===== TWO COLUMN GRID ===== */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ===== DIFFERENCE LIST ===== */
.difference-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.difference-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.difference-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #FBBF24;
    color: #1F2937;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.difference-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.difference-content p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

/* ===== STEPS LIST ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #FBBF24;
    color: #1F2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: #F9FAFB;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #FEF3C7;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FBBF24;
}

.faq-answer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #E5E7EB;
}

.faq-answer p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-item p {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.contact-form-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FBBF24;
}

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

.btn-submit {
    width: 100%;
    background: #FBBF24;
    color: #1F2937;
    border: none;
    padding: 1.125rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #F59E0B;
    transform: translateY(-2px);
}

/* ===== RULES & LEGAL CONTENT ===== */
.rules-content ul,
.legal-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.rules-content ul li,
.legal-content ul li {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.rules-content ul li:before,
.legal-content ul li:before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    color: #FBBF24;
    font-weight: 900;
    font-size: 1.25rem;
}

.rules-content ol,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.rules-content ol li,
.legal-content ol li {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .two-column-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-item,
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
