:root {
    --primary-color: #2A5C82;
    --secondary-color: #5CB85C;
    --accent-color: #FFA726;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Styles */
header {
    background: #ededed;
    padding: 1rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 50px;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}
main {
    min-height: 530px;
}
/* Main Content Styles */
.hero {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                url('pattern-bg.png');
    background-size: cover;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 5%;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-section ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }
}
