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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.editorial-content {
    background-color: #fafbfc;
}

.story-flow {
    padding: 0;
}

.hero-story {
    position: relative;
    height: 600px;
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.5;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

.text-block {
    margin-bottom: 50px;
}

.text-block h1,
.text-block h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a202c;
}

.text-block h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #2d3748;
}

.text-block h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #2d3748;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.text-block ul,
.text-block ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-block li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.inline-image {
    margin: 50px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.caption {
    font-size: 15px;
    color: #718096;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #1a73e8;
    color: #ffffff;
    margin: 5px;
}

.btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    margin: 5px;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonial-inline {
    background-color: #f7fafc;
    padding: 35px;
    border-left: 4px solid #1a73e8;
    margin: 50px 0;
    border-radius: 4px;
}

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

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.services-preview {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-preview h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    display: block;
}

.services-link {
    text-align: center;
    margin-top: 30px;
}

.services-link a {
    color: #1a73e8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.services-link a:hover {
    text-decoration: underline;
}

.services-detailed {
    margin: 50px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.service-item:nth-child(even) {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-details {
    display: flex;
    flex-direction: column;
}

.service-details h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.btn-select-service {
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 600;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.service-form-section {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 50px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-form-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a202c;
}

.service-form-section p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-detail h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-page p,
.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.legal-page ul {
    margin: 20px 0;
    margin-left: 25px;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: none;
}

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

.legal-page em {
    color: #718096;
    font-size: 15px;
}

#resetCookieConsent {
    margin-top: 20px;
}

.thanks-page {
    text-align: center;
}

.thanks-icon {
    margin: 40px auto 30px;
}

.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-section a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    font-size: 16px;
    text-align: center;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #4a5568;
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .service-item {
        flex-direction: row;
    }

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image,
    .service-details {
        flex: 1;
    }

    .contact-info-block {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-detail {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}