:root {
    --primary: #1E3A8A;
    --accent: #10B981;
    --background: #F3F4F6;
    --alert: #F59E0B;
    --text: #111827;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}
header {
    background: var(--primary);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}
header img {
    width: 50%;
    margin-bottom: 1rem;
}
header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin: 0.5rem 0;
}
header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.cta-buttons {
    margin-top: 1.5rem;
}
.cta-buttons a img {
    width: 160px;
    height: 50px;
    margin: 0.5rem;
}
section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: auto;
}
h2 {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}
.faq {
    margin-top: 2rem;
}
.faq-item {
    background: white;
    border-left: 4px solid var(--accent);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
footer {
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}
footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
header p a {
  color: inherit; /* Inherits the color from the parent p */
  font-size: inherit; /* Inherits the font-size from the parent p */
  text-decoration: none; /* You might want to remove default underline */
}
