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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons,
.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #28a745;
    color: #fff;
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background: #5a6268;
}

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

.header-main {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation,
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu,
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a,
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-links a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 32px;
    z-index: 2;
}

.hero-section h1,
.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #c73e3f;
    transform: translateY(-2px);
}

.cta-secondary {
    background: var(--secondary-color);
}

.cta-secondary:hover {
    background: #243447;
}

.intro-block {
    padding: 80px 32px;
    background: #fff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.intro-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 32px;
    background: var(--bg-light);
}

.section-header-offset {
    margin-bottom: 48px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    display: flex;
    gap: 32px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.process-section {
    padding: 80px 32px;
}

.process-steps {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.cta-section {
    padding: 80px 32px;
    text-align: center;
    background: var(--secondary-color);
    color: #fff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.form-section {
    padding: 80px 32px;
    background: #fff;
}

.form-section h2,
.form-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.contact-form,
.project-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit,
.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover,
.submit-btn:hover {
    background: #c73e3f;
    transform: translateY(-2px);
}

.image-section {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-content {
    padding: 32px;
    text-align: center;
    color: #fff;
}

.overlay-content blockquote {
    font-size: 32px;
    font-style: italic;
    max-width: 800px;
}

.footer-main {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 32px 32px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    line-height: 1.5;
}

.editorial-flow {
    background: #fff;
}

.story-content {
    max-width: 100%;
}

.hero-story {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #222;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 32px;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 22px;
    max-width: 700px;
}

.intro-narrative {
    padding: 80px 32px;
}

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

.opening-line {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 500;
}

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

.narrow-content h2 {
    font-size: 36px;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.inline-image-block {
    margin: 48px 0;
    text-align: center;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.inline-image-block figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

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

.text-link-cta {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s;
}

.text-link-cta:hover {
    color: #c73e3f;
    border-bottom-color: #c73e3f;
}

.service-highlight-box {
    margin: 64px 0;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-highlight-box h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h4 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px 12px;
    font-size: 15px;
    line-height: 1.6;
}

.service-price {
    padding: 0 24px;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.select-service-btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 12px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonial-block {
    margin: 48px 0;
    padding: 40px;
    background: #f0f7ff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.testimonial-block blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-block footer {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.disclaimer-section {
    margin: 64px 0 32px;
    padding: 32px;
    background: #fff9e6;
    border: 1px solid #ffd966;
    border-radius: 8px;
}

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

.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 32px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-selected {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 24px 0;
}

.service-selected strong {
    color: var(--accent-color);
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #243447;
}

.legal-page {
    padding: 80px 32px;
    background: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content .last-updated {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 32px;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.contact-info-item {
    flex: 1;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section h1,
    .hero-content h1,
    .hero-overlay h1 {
        font-size: 36px;
    }

    .services-grid-stacked .service-card {
        flex-direction: column;
    }

    .service-card.reverse {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }

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