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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5282;
}

.hero-minimal {
    padding: 80px 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-center {
    text-align: center;
    margin-bottom: 60px;
}

.hero-content-center h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-wide {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-wide h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.intro-wide p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.services-preview {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-info p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #2c5282;
    padding: 10px 20px;
    background-color: #ebf4ff;
    border-radius: 6px;
}

.form-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.contact-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    background-color: #2c5282;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4365;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2c3e50;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 60px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #2a4365;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.page-hero-minimal {
    padding: 80px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-minimal h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.page-hero-minimal p {
    font-size: 20px;
    color: #4a5568;
}

.content-section {
    padding: 60px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

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

.image-block {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin: 60px 0;
    background-color: #e2e8f0;
}

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

.services-detail {
    padding: 60px 60px 120px;
}

.service-detail-card {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 17px;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    width: fit-content;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
}

.cta-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-section {
    padding: 60px 60px 120px;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info {
    padding: 60px 60px 80px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.additional-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.additional-info a {
    color: #2c5282;
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-content > p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 18px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ebf4ff;
    border-radius: 6px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.legal-section {
    padding: 80px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2c5282;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 16px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .minimal-nav {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-minimal {
        padding: 40px 20px 0;
    }

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

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

    .hero-image-container {
        height: 300px;
    }

    .intro-wide {
        padding: 60px 20px;
    }

    .intro-wide h2 {
        font-size: 32px;
    }

    .intro-wide p {
        font-size: 17px;
    }

    .services-preview {
        padding: 40px 20px;
    }

    .service-card {
        margin-bottom: 60px;
    }

    .form-section {
        padding: 60px 20px;
    }

    .form-section h2 {
        font-size: 36px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .page-hero-minimal {
        padding: 60px 20px 40px;
    }

    .page-hero-minimal h1 {
        font-size: 42px;
    }

    .content-section {
        padding: 40px 20px 80px;
    }

    .image-block {
        height: 300px;
        margin: 40px 0;
    }

    .services-detail {
        padding: 40px 20px 80px;
    }

    .contact-section {
        padding: 40px 20px 80px;
    }

    .additional-info {
        padding: 40px 20px 60px;
    }

    .thanks-section {
        padding: 80px 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .legal-section {
        padding: 60px 20px 80px;
    }

    .legal-section h1 {
        font-size: 36px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}