* {
    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: #2c3e50;
    background: #f8f9fa;
}

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

.ad-disclosure {
    background: #fffbea;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-top {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f5d;
}

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

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

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

.nav-cta {
    background: #2d5f5d;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #234948;
}

.hero-card {
    background: #ffffff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-content {
    display: flex;
    flex-direction: row-reverse;
}

.hero-text-card {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-card {
    flex: 1;
    background: #e8f4f3;
}

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

.btn-primary {
    background: #d4a574;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #c49461;
}

.intro-cards {
    padding: 60px 0;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.intro-card.highlight {
    background: #2d5f5d;
    color: #ffffff;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-card p {
    font-size: 16px;
    line-height: 1.6;
    color: inherit;
}

.intro-card.highlight h3,
.intro-card.highlight p {
    color: #ffffff;
}

.services-preview {
    padding: 80px 0;
    background: #f1f3f5;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.service-content {
    padding: 32px 28px;
}

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

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2d5f5d;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    background: #2d5f5d;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #234948;
}

.process-card {
    padding: 80px 0;
    background: #ffffff;
}

.process-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.process-visual {
    flex: 0 0 45%;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: #f8f9fa;
    padding: 24px 28px;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 8px;
}

.step-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #2d5f5d;
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background: #ffffff;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-card > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

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

.btn-submit {
    width: 100%;
    background: #d4a574;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c49461;
}

.disclaimer-section {
    padding: 50px 0;
    background: #f1f3f5;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-card {
    flex: 1;
    min-width: 220px;
}

.footer-card h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #d4a574;
}

.footer-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-card ul li {
    margin-bottom: 10px;
}

.footer-card ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-card ul li a:hover {
    color: #d4a574;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5f5d;
    padding: 24px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #d4a574;
    color: #ffffff;
}

.btn-accept:hover {
    background: #c49461;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.contact-page {
    padding: 80px 0;
    background: #ffffff;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card h1 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5f5d;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2d5f5d;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

.about-hero {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-hero-content {
    display: flex;
}

.about-text {
    flex: 1;
    padding: 60px 50px;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: #e0e0e0;
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d5f5d;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.thanks-page {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-card {
    max-width: 600px;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2d5f5d;
    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: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.thanks-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.thanks-card .btn-primary {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        flex-direction: column;
    }

    .intro-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero-content {
        flex-direction: column;
    }
}