:root {
    --primary-color: #1e3a8a;
    /* Deep Blue from screenshot */
    --secondary-color: #3b82f6;
    /* Lighter blue for accents */
    --text-color: #333;
    --light-gray: #fca5a5;
    /* Just a placeholder, will fix */
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --border-radius: 8px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
}

.header .subtitle {
    background-color: var(--white);
    color: var(--primary-color);
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header p {
    font-size: 1.2rem;
    font-weight: 500;
}

.global-blue-logo {
    text-align: right;
    margin-top: var(--spacing-md);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Sections */
h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.intro-text {
    margin-bottom: var(--spacing-xl);
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.step-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-md);
}

/* FAQ Accordion */
.faq-section {
    margin-bottom: var(--spacing-xl);
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--spacing-md) 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 10px;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-bottom: var(--spacing-md);
    color: #4b5563;
}

.faq-answer.show {
    display: block;
}

.faq-answer ul {
    margin-left: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

/* Terms & Conditions */
.terms-section {
    background-color: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
}

.terms-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.terms-content h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

/* Responsive */
@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
    }

    .header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 799px) {
    .global-blue-logo {
        border-radius: 0px;
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .global-blue-logo {
    text-align: left;
}

[dir="rtl"] .faq-question {
    text-align: right;
}

[dir="rtl"] .faq-question::after {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .faq-answer ul {
    margin-left: 0;
    margin-right: var(--spacing-lg);
}

.hero {
    text-align: center;
}

.hero img {
    width: 100%;
    max-width: 800px;
}