/* Global / Index Styles */
body { font-family: 'Inter', sans-serif; }
.hero-pattern {
    background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Terms & Conditions Page Styles */
body.terms-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}
.terms-page .container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.terms-page h1 {
    color: #111;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.terms-page h2 {
    margin-top: 30px;
    color: #2563eb; /* Blue Bee Blue */
    font-size: 1.25rem;
}
.terms-page h3 {
    font-size: 1rem;
    color: #444;
    margin-top: 20px;
}
.terms-page ul {
    padding-left: 20px;
}
.terms-page li {
    margin-bottom: 10px;
}
.terms-page .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: block;
}
.terms-page .strong-warning {
    background-color: #fff4f4;
    border-left: 4px solid #ef4444;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.95rem;
}
.terms-page a {
    color: #2563eb;
    text-decoration: none;
}
.terms-page a:hover {
    text-decoration: underline;
}
