/* Basic Reset and Global Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9; /* Light background */
    color: #333;
}

header {
    background-color: #0052FE; /* Coinbase-like blue */
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 5px solid #1652f0; /* Darker blue line */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1em;
    font-weight: 300;
}

main {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    background-color: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #0052FE;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Specific Section Styling */
.warning-section {
    background-color: #fff3cd; /* Light yellow for warning */
    border: 1px solid #ffeeba;
    color: #856404;
}

.warning-section h2 {
    color: #856404;
    border-bottom: 2px solid #856404;
}

/* Call to Action Button */
.cta-link {
    text-align: center;
    margin-top: 25px;
}

.button {
    display: inline-block;
    background-color: #1652f0;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0052FE;
}

/* List and Link Styles */
ol {
    padding-left: 20px;
}

a {
    color: #1652f0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 15px;
    border-left: 3px solid #1652f0;
    padding-left: 15px;
}

.faq-item h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #ddd;
    color: #555;
    font-size: 0.85em;
}