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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #1a73e8;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.editorial-hero {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 10%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.editorial-section {
    padding: 4rem 10%;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
}

.editorial-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.editorial-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.editorial-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: #3c3c3c;
}

.ref-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.inline-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.inline-cta:hover {
    background: #1557b0;
}

.bg-light {
    background: #f9f9f9;
}

.bg-dark {
    background: #1a1a1a;
    color: #e0e0e0;
}

.bg-dark h2,
.bg-dark h3 {
    color: #ffffff;
}

.bg-dark p {
    color: #d0d0d0;
}

.inline-image-wrap {
    width: 100%;
    margin: 2rem 0;
    background-color: #e8e8e8;
    overflow: hidden;
}

.inline-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.principle-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid #1a73e8;
    background: #f7f9fc;
}

.principle-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.testimonial-section {
    background: #f0f4f8;
}

.testimonial {
    padding: 2rem;
    border-left: 5px solid #1a73e8;
    font-style: italic;
    font-size: 1.15rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #555;
}

.service-card {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #2c2c2c;
    border-radius: 6px;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4da6ff;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1557b0;
}

.form-section {
    background: #f5f7fa;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.btn-submit {
    padding: 1rem 3rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1557b0;
}

.disclaimer-section {
    background: #fff8e1;
    border-top: 3px solid #ffa000;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #555;
}

.disclaimer-text h3 {
    color: #d84315;
    margin-bottom: 1rem;
}

.references-section {
    background: #f9f9f9;
}

.references-list {
    padding-left: 1.5rem;
}

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

.references-list a {
    color: #1a73e8;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background: #555;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    opacity: 0.9;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.contact-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 1.05rem;
    color: #444;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.service-item {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

.service-item .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a73e8;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 5%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a73e8;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-container .selected-service {
    font-weight: 700;
    color: #1a73e8;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background: #1557b0;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

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

    .editorial-section {
        padding: 3rem 5%;
    }

    .editorial-section h2 {
        font-size: 1.6rem;
    }

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

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