* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background-color: #fafafa;
}

.hero-minimal {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: 4rem;
    z-index: 10;
}

.hero-minimal h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6a6a6a;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    max-width: 1100px;
    background-color: #e8e8e8;
}

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

.intro-space {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.9;
}

.feature-block {
    display: flex;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 3rem;
    align-items: center;
}

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

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

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.feature-text a {
    color: #3a7c9e;
    text-decoration: none;
}

.feature-text a:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 8rem 3rem;
    background-color: #f5f5f5;
}

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 2rem 1rem 2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #6a6a6a;
    line-height: 1.6;
    margin: 0 2rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin: 1.5rem 2rem 1rem 2rem;
}

.service-card .btn-select {
    margin: 0 2rem 2rem 2rem;
    padding: 0.9rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .btn-select:hover {
    background-color: #1a1a1a;
}

.form-section {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #5a5a5a;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d5d5d5;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-group input:disabled {
    background-color: #f0f0f0;
    color: #8a8a8a;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.trust-indicators {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.trust-indicators h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-inline {
    padding: 8rem 3rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: #b5b5b5;
}

.disclaimer-section {
    padding: 5rem 3rem;
    background-color: #f5f5f5;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #d5d5d5;
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6a6a6a;
}

.footer {
    background-color: #2c2c2c;
    color: #b5b5b5;
    padding: 5rem 3rem 2rem 3rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8a8a8a;
}

.references {
    font-size: 0.85rem;
    line-height: 1.6;
}

.references li {
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    margin-top: 80px;
    padding: 6rem 3rem 3rem 3rem;
    text-align: center;
    background-color: #f5f5f5;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1.5px;
}

.about-content {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    display: flex;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: center;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.values-section {
    margin: 6rem 0;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6a6a6a;
}

.team-note {
    margin-top: 5rem;
    padding: 3rem;
    background-color: #f9f9f9;
}

.team-note h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.team-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-full {
    display: flex;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    margin: 2rem 0;
}

.service-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #6a6a6a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

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

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

.contact-content {
    padding: 5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block {
    margin-bottom: 4rem;
}

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.contact-text {
    margin-top: 4rem;
}

.contact-text h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.thanks-content {
    padding: 8rem 3rem;
    min-height: 60vh;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-message h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
}

.thanks-details p {
    font-size: 1rem;
    color: #2c2c2c;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #1a1a1a;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #3a7c9e;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-block,
    .content-block,
    .service-full {
        flex-direction: column;
        gap: 2rem;
    }

    .content-block.reverse,
    .service-full.reverse {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}