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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.editorial-container {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.story-content {
    background-color: #ffffff;
}

.story-header {
    margin-bottom: 48px;
    text-align: center;
}

.story-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-lead {
    font-size: 20px;
    color: #555555;
    line-height: 1.6;
    font-weight: 400;
}

.story-section {
    margin-bottom: 48px;
}

.story-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

.inline-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.inline-image-small {
    margin: 32px 0;
    background-color: #e8e8e8;
}

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

.inline-cta {
    margin: 48px 0;
    text-align: center;
    padding: 32px 0;
    border-top: 2px solid #ecf0f1;
    border-bottom: 2px solid #ecf0f1;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.highlight-box {
    background-color: #f8f9fa;
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid #3498db;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid #e1e8ed;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list strong {
    color: #2c3e50;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.form-section {
    margin: 64px 0;
    padding: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555555;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.disclaimer-section {
    margin: 64px 0;
    padding: 24px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .editorial-container {
        padding: 0 20px;
        margin: 40px auto;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .story-lead {
        font-size: 18px;
    }

    .story-section h2 {
        font-size: 26px;
    }

    .form-section {
        padding: 32px 24px;
    }

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

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

.thanks-container {
    max-width: 720px;
    margin: 120px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-box {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.thanks-box .selected-service {
    font-weight: 600;
    color: #3498db;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.page-container {
    max-width: 920px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #ffffff;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.page-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

.page-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-container ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333333;
}

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

.page-container a:hover {
    text-decoration: underline;
}

.contact-info {
    margin: 32px 0;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #333333;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-top: 16px;
}

.about-content {
    margin: 40px 0;
}

.about-image {
    margin: 40px 0;
    background-color: #e8e8e8;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}