* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-disclaimer {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #0066cc;
}

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

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-content {
    flex: 1;
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
    background-color: #e9ecef;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-large:hover {
    background: #0052a3;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: #6c757d;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.intro-section {
    padding: 80px 24px;
}

.intro-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.intro-card p {
    color: #4a4a4a;
    font-size: 16px;
}

.services-preview {
    padding: 80px 24px;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 15px;
}

.price {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.cta-centered {
    text-align: center;
}

.approach-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.step-card {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    color: #4a4a4a;
    font-size: 15px;
}

.approach-visual {
    flex: 0.8;
    position: sticky;
    top: 100px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
    height: 600px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section {
    padding: 80px 24px;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 48px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-header p {
    color: #4a4a4a;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.trust-section {
    padding: 80px 24px;
    background: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #2a2a2a;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.trust-card p {
    color: #b0b0b0;
    font-size: 15px;
}

.footer {
    background: #f8f9fa;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.footer-column p {
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #d1d5db;
}

.footer-bottom p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    color: #999 !important;
    max-width: 800px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #4a4a4a;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-card {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 60px 40px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #ffffff;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-card p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.contact-page {
    padding: 80px 24px;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info-card p {
    color: #4a4a4a;
    font-size: 16px;
    margin-bottom: 8px;
}

.services-page {
    padding: 80px 24px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.about-page {
    padding: 80px 24px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page {
    padding: 80px 24px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .approach-layout {
        flex-direction: column;
    }

    .approach-visual {
        width: 100%;
        position: static;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        flex: 1 1 100%;
    }
}