* {
    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;
}

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

.top-bar {
    background: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #2c3e50;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f4c430;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ddb320;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    font-size: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-note {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #f8f9fa;
}

.section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.business-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.business-list li {
    background: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 500;
}

.section > .container > p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f4c430;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

.process-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 25px;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: #aaa;
}

.footer {
    background: #1a252f;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.footer-name {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.btn-cookie {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section h2 {
        font-size: 26px;
    }
}
