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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-cookie {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-outline:hover {
    background-color: white;
    color: #1a1a1a;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.editorial-layout {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 4rem 2rem 2rem;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: normal;
}

.hero-subtitle {
    max-width: 900px;
    margin: 1rem auto 0;
    font-size: 1.3rem;
    opacity: 0.9;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #2c3e50;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.content-narrow h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.inline-image {
    margin: 3rem 0;
    background-color: #ecf0f1;
}

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

.inline-image figcaption {
    padding: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.reference:hover {
    color: #2980b9;
}

.insight-box {
    background-color: #ecf8f3;
    border-left: 4px solid #27ae60;
    padding: 2rem;
    margin: 3rem 0;
}

.insight-box h3 {
    margin-top: 0;
    color: #27ae60;
}

.principle-block {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.principle-block h4 {
    margin-top: 0;
    color: #2c3e50;
}

.testimonial {
    background-color: #f4f6f7;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
}

.testimonial blockquote {
    margin: 0;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.service-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin: 0.5rem 0;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.form-section {
    background-color: #ecf8f3;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.disclaimer {
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
}

.disclaimer h3 {
    margin-top: 0;
    color: #d68910;
}

.references {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.references h3 {
    margin-bottom: 1rem;
}

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

.references li {
    margin: 0.75rem 0;
    font-size: 0.95rem;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

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

.footer-section li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

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

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.page-content li {
    margin: 0.75rem 0;
}

.contact-info {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.75rem 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
}

.service-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.about-section {
    margin: 3rem 0;
}

.about-image {
    width: 100%;
    height: 400px;
    background-color: #34495e;
    margin: 2rem 0;
}

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

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

.thanks-container h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.thanks-container .btn-primary {
    margin-top: 2rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .content-narrow {
        padding: 2rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}