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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --link-color: #3498db;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #d35400;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-narrow {
    max-width: 700px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

.content-section {
    padding: 50px 20px;
}

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

.narrow-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.narrow-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--primary-color);
}

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

.narrow-text ul,
.narrow-text ol {
    margin-bottom: 18px;
    margin-left: 30px;
    font-size: 18px;
}

.narrow-text li {
    margin-bottom: 10px;
}

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

.inline-image-full img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
}

.service-embed {
    background: var(--light-bg);
    padding: 30px;
    margin: 30px 0;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.service-embed h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary-color);
}

.service-embed p {
    margin-bottom: 15px;
}

.price-inline {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 20px 0;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #d35400;
    color: white;
}

.cta-inline-strong {
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-inline-strong:hover {
    color: #d35400;
}

.testimonial-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.testimonial-narrow {
    max-width: 700px;
    margin: 0 auto;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.testimonial-narrow p {
    margin-bottom: 20px;
}

.testimonial-narrow cite {
    display: block;
    font-style: normal;
    font-size: 16px;
    color: #777;
    margin-top: 15px;
}

.booking-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.form-container-narrow h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 32px;
}

.form-intro {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
}

.final-section {
    margin-bottom: 50px;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-button {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #d35400;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: white;
}

.page-header-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.header-intro {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.services-list {
    padding: 0 20px;
}

.service-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 0 0 400px;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 20px 0;
}

.price-detail {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: auto;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #d35400;
    color: white;
}

.services-cta-section {
    padding: 60px 20px;
    background: var(--light-bg);
    margin-top: 40px;
}

.cta-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-narrow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-narrow p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.about-page {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.contact-content {
    padding: 0 20px;
}

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

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

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-cta-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-cta-box p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    color: white;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 8px;
    color: #555;
}

.thanks-next-steps {
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-additional {
    margin-top: 40px;
    font-size: 16px;
    color: #666;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 30px;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-text-narrow h1 {
        font-size: 36px;
    }

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

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

    .narrow-text p {
        font-size: 17px;
    }

    .testimonial-narrow {
        font-size: 19px;
    }

    .service-card {
        flex-direction: column;
        gap: 0;
    }

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

    .service-image {
        flex: none;
        height: 250px;
    }

    .service-details {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .form-container-narrow {
        padding: 30px 20px;
    }

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

    .header-intro {
        font-size: 17px;
    }
}