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

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

/* Hero Section - Full Height */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #002171 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Header & Logo */
header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Services Section */
.services {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    max-width: 450px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h2 {
    font-size: 1.25rem;
    color: #1565C0;
    padding: 20px 25px 10px;
    text-align: center;
}

.service-card p {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 50px 20px 30px;
    text-align: center;
}

footer h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.footer-contact svg {
    color: #1565C0;
    flex-shrink: 0;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #1565C0;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.social-links a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #1565C0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #0D47A1;
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #1565C0;
    text-decoration: underline;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 30px 15px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    footer {
        padding: 40px 15px 25px;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }
}

/* Privacy Policy Page */
.policy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #002171 100%);
}

.policy-header {
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 0;
}

.policy-header a {
    display: inline-block;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px 12px 0 0;
}

.policy-content h1 {
    color: #1565C0;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content h2 {
    color: #1565C0;
    font-size: 1.4rem;
    margin: 35px 0 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.policy-content h2:first-of-type {
    border-top: none;
}

.policy-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 25px 0 10px;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
}

.policy-content ul {
    margin: 15px 0 20px 25px;
    color: #555;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: #1565C0;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1565C0;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
        border-radius: 0;
    }

    .policy-content h1 {
        font-size: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }
}
