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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

header h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

header p {
    color: #6c757d;
    font-size: 1rem;
}

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 10px;
}

h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h2 {
    margin-top: 0;
    border-bottom: none;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Landing page styles */

.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.hero .tagline {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 0;
}

.about {
    margin-top: 40px;
    text-align: center;
}

.about p {
    text-align: center;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products {
    margin-top: 50px;
}

.products h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 25px;
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    display: block;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.product-card h3 {
    margin: 0 0 10px 0;
    color: #0066cc;
    font-size: 1.3rem;
}

.product-card p {
    margin: 0;
    color: #6c757d;
    text-align: left;
}

/* Reuse card style for legal links */

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.legal-link {
    display: block;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.legal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.legal-link h2 {
    margin: 0 0 10px 0;
    border: none;
    color: #0066cc;
    font-size: 1.3rem;
}

.legal-link p {
    margin: 0;
    color: #6c757d;
    text-align: left;
}

.cta {
    text-align: center;
    margin-top: 50px;
}

.cta p {
    text-align: center;
    font-size: 1.05rem;
}

.cta a {
    font-weight: 600;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}
