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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.main-nav {
    background-color: #ffffff;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-minimal {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding: 80px 20px;
}

.hero-content-centered {
    max-width: 700px;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #333;
}

.intro-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.image-text-offset {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.offset-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.image-block {
    flex: 1;
    background-color: #e8e8e8;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-block {
    flex: 1;
}

.text-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 120px 20px;
    background-color: #ffffff;
}

.section-header-centered {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    padding: 50px 40px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #333;
}

.form-section {
    padding: 120px 20px;
    background-color: #f5f5f5;
}

.form-container-centered {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.form-container-centered h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-centered > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #333;
}

.trust-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.trust-points {
    margin-top: 60px;
}

.trust-item {
    margin-bottom: 50px;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background-color: #f0f0f0;
}

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

.btn-cookie-reject:hover {
    background-color: #333;
}

.cookie-link {
    color: #ccc;
    font-size: 13px;
    text-decoration: underline;
}

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

.thanks-content {
    max-width: 650px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.thanks-content .service-selected {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #1a1a1a;
}

.thanks-content .service-selected strong {
    color: #1a1a1a;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-col {
    flex: 1;
    min-width: 280px;
}

.contact-col h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-hero {
    padding: 100px 20px;
    background-color: #fafafa;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item .service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
    }

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

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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