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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b5a3c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0dcd7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background-color: #c89560;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    padding: 6px 16px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 60px 40px;
    color: white;
}

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

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

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

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

.container-centered {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-magazine {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.editorial-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.editorial-content p {
    font-size: 19px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.split-content-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.split-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.split-image {
    flex: 1;
    background-color: var(--bg-white);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.magazine-grid-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-centered h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-intro {
    font-size: 20px;
    color: var(--text-light);
}

.magazine-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-large {
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-card-large img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card-large .card-content {
    padding: 40px;
}

.service-card-large h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card-large p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.select-service-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-card-compact {
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-card-compact img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card-compact .card-content {
    padding: 24px;
}

.service-card-compact h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card-compact p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-card-compact .price-tag {
    font-size: 20px;
    margin-bottom: 16px;
}

.magazine-row-secondary {
    margin-top: 40px;
}

.service-card-horizontal {
    display: flex;
    background-color: var(--bg-light);
    gap: 0;
}

.card-image-side {
    flex: 1;
    background-color: var(--bg-white);
}

.card-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content-side {
    flex: 1.5;
    padding: 50px;
}

.card-content-side h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.card-content-side p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.testimonial-block {
    margin-bottom: 40px;
}

.testimonial-block blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 32px;
    font-size: 21px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-block cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: Georgia, serif;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-box {
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.disclaimer-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: Arial, sans-serif;
}

.page-header-section {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header-section h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-content-section {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.about-text-main {
    flex: 1.5;
}

.about-text-main h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text-main p {
    font-size: 18px;
    margin-bottom: 22px;
    color: var(--text-light);
}

.about-image-side {
    flex: 1;
    background-color: var(--bg-light);
}

.about-image-side img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-white);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.approach-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.values-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-note-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-note-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-top: 3px solid var(--secondary-color);
}

.team-note-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-note-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-detailed-section {
    padding: 80px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 28px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.service-cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-primary-large:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-feature {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image-feature img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-note-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.info-box {
    background-color: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
}

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

.info-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 24px;
    margin: 32px 0;
    border-radius: 4px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-note {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.next-steps-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page-section {
    padding: 80px 0;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

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

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.legal-content a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 1200px) {
    .magazine-layout {
        flex-direction: column;
    }

    .split-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

    .about-split {
        flex-direction: column;
    }

    .approach-grid {
        flex-direction: column;
    }

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

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

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