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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.editorial-container {
    max-width: 100%;
}

.editorial-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a2e;
}

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

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.editorial-intro {
    background-color: #ffffff;
    padding: 80px 20px;
}

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

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 300;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #34495e;
}

.content-narrow h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.inline-image {
    margin: 50px 0;
    background-color: #ecf0f1;
}

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

.image-caption {
    padding: 15px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    background-color: #ecf0f1;
}

.inline-cta {
    margin: 40px 0;
    padding: 25px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
}

.text-cta {
    color: #3498db;
    font-size: 19px;
    text-decoration: none;
    font-weight: 500;
}

.text-cta:hover {
    text-decoration: underline;
}

.button-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button-cta:hover {
    background-color: #2980b9;
}

.trust-block {
    margin: 50px 0;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 5px solid #27ae60;
}

.trust-block h3 {
    margin-top: 0;
    color: #27ae60;
    font-size: 20px;
}

.trust-block p {
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    font-style: normal;
    margin-top: 15px;
}

.content-highlight {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff5e6;
    border: 2px solid #f39c12;
    border-radius: 6px;
}

.content-highlight h3 {
    margin-top: 0;
    color: #e67e22;
}

.services-preview {
    margin: 60px 0;
    padding: 40px;
    background-color: #f1f3f5;
    border-radius: 8px;
}

.services-preview h3 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #2c3e50;
}

.service-mini-card {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-mini-card h4 {
    margin-top: 0;
    color: #2c3e50;
}

.price-inline {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0;
}

.inline-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ecf0f1;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.service-select-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

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

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #bdc3c7;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

.form-section {
    background-color: #f1f3f5;
    padding: 40px;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-selected-service {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-selected-service h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    .nav-minimal {
        flex-direction: column;
        gap: 15px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

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

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