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

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

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.about {
    background: #f8f9fa;
}

.about h2, .services h2, .contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
}

/* Contact */
.contact {
    background: #f8f9fa;
    text-align: center;
}

.contact p {
    font-size: 1.1rem;
    color: #666;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #9bd0ff;
    text-decoration: none;
    margin-left: 0.5rem;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* Policy Page */
main.policy {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    color: #2c3e50;
}

.policy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-home {
    display: inline-block;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.policy-app {
    margin-top: 0.75rem;
    font-size: 2rem;
    font-weight: 300;
    color: #475569;
}

.policy-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.12);
}

.policy-content h1 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1f2937;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.policy-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.policy-content p {
    margin-bottom: 1.1rem;
    color: #4b5563;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 1.5rem 1.5rem;
    color: #4b5563;
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.policy-content hr {
    border: none;
    height: 1px;
    background: #e2e8f0;
    margin: 2rem 0;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #6b7280;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    nav {
        padding: 1rem;
    }

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

    main.policy {
        padding: 60px 16px 100px;
    }

    .policy-content {
        padding: 2rem;
        border-radius: 14px;
    }

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

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

    .policy-app {
        font-size: 1.5rem;
    }

}