/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fbff;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
    text-align: center;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #6ea8fe, #a4c8ff);
    color: white;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: white;
    color: #2b6df6;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #e6f0ff;
}

/* Sections */
section {
    padding: 40px 0;
}

section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* CTA section */
.cta-section {
    background-color: #eef4ff;
}

/* Footer */
footer {
    background-color: #f0f4fa;
    font-size: 0.9rem;
    padding: 20px 0;
}





/* --- Legal / Privacy page styles --- */
.page-hero {
    background: linear-gradient(135deg, #6ea8fe, #a4c8ff);
    color: white;
    padding: 60px 20px;
}

.meta {
    opacity: 0.95;
    margin-top: 10px;
}

.page-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    transition: 0.3s;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.legal {
    background: #f9fbff;
}

.legal-container {
    text-align: left;
    max-width: 900px;
}

.legal-section {
    margin-top: 28px;
}

.legal-section h2 {
    margin-bottom: 10px;
}

.legal-section h3 {
    margin: 14px 0 8px;
    font-size: 1.1rem;
}

.legal-section ul {
    margin: 10px 0 0 18px;
}

.legal-section li {
    margin: 6px 0;
}

.legal-toc {
    margin: 22px 0 10px;
    padding: 14px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-toc a {
    text-decoration: none;
    font-weight: bold;
    color: #2b6df6;
    background: #eef4ff;
    padding: 8px 12px;
    border-radius: 999px;
}

.legal-toc a:hover {
    background: #e6f0ff;
}

.links-list a {
    color: #2b6df6;
    text-decoration: none;
}

.links-list a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact {
    margin-top: 10px;
}

.legal-footer {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}