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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.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;
}

.btn-accept {
    background-color: #2c5f2d;
    color: white;
}

.btn-accept:hover {
    background-color: #1f4621;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.header-magazine {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 36px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.magazine-layout {
    background-color: #fafafa;
}

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

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

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

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

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

.hero-subtitle {
    color: #e0e0e0;
    font-size: 20px;
    max-width: 700px;
}

.container-magazine {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.intro-columns {
    padding: 80px 0;
    background-color: #ffffff;
}

.three-col-layout {
    display: flex;
    gap: 50px;
}

.col-main {
    flex: 2;
}

.col-side {
    flex: 1;
}

.col-wide {
    flex: 2.5;
}

.col-narrow {
    flex: 1;
}

.col-main h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.col-main p {
    margin-bottom: 20px;
    font-size: 17px;
}

.info-box {
    background-color: #f5f5f5;
    padding: 24px;
    margin-bottom: 24px;
    border-left: 4px solid #2c5f2d;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
}

.col-side img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e0e0e0;
    object-fit: cover;
}

.feature-spread {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.spread-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.spread-text {
    flex: 1.2;
}

.spread-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.spread-text p {
    font-size: 17px;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    margin-top: 16px;
    color: #2c5f2d;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #1f4621;
    border-color: #1f4621;
}

.spread-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card-mag {
    flex: 1;
    min-width: 300px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-card-mag img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-card-mag h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card-mag p {
    font-size: 15px;
    margin: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 16px;
}

.price-inline {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-left: auto;
}

.btn-select-service {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 0 24px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4621;
}

.full-width-quote {
    padding: 80px 0;
    background-color: #2c5f2d;
    color: white;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.quote-container blockquote {
    font-size: 32px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.quote-container cite {
    display: block;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.detailed-services {
    padding: 80px 0;
    background-color: #fafafa;
}

.two-col-asymmetric {
    display: flex;
    gap: 60px;
}

.col-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.col-narrow p {
    font-size: 16px;
    line-height: 1.7;
}

.service-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item-inline {
    padding: 24px;
    background-color: #ffffff;
    border-left: 3px solid #2c5f2d;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item-inline h3 {
    font-size: 22px;
    color: #1a1a1a;
}

.service-item-inline p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-editorial-layout {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 16px;
    color: #555;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4621;
}

.history-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 24px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #aaa;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

.page-header {
    padding: 60px 0 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.header-intro {
    font-size: 18px;
    color: #555;
    max-width: 800px;
}

.about-content {
    padding: 80px 0;
    background-color: #fafafa;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f5f5f5;
    border-top: 4px solid #2c5f2d;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
}

.story-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.stat-box {
    background-color: #2c5f2d;
    color: white;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
}

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.cta-box-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box-centered p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4621;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: white;
}

.services-detailed {
    padding: 80px 0;
    background-color: #fafafa;
}

.service-block {
    margin-bottom: 80px;
}

.service-header-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-text {
    flex: 1.2;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-text h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #1a1a1a;
}

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

.service-text ul {
    margin: 16px 0 24px 24px;
}

.service-text li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.service-pricing {
    margin: 24px 0 16px;
    padding: 16px;
    background-color: #f5f5f5;
    display: inline-block;
}

.price-label {
    font-size: 15px;
    margin-right: 8px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f2d;
}

.service-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info-section {
    flex: 1.5;
}

.contact-additional {
    flex: 1;
}

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

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c5f2d;
}

.email-note {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.note-text {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.info-box-contact {
    background-color: #f5f5f5;
    padding: 24px;
    margin-bottom: 24px;
}

.info-box-contact h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-box-contact p {
    font-size: 15px;
    line-height: 1.6;
}

.info-box-contact ul {
    margin-top: 12px;
    margin-left: 20px;
}

.info-box-contact li {
    font-size: 14px;
    margin-bottom: 6px;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.map-info {
    text-align: center;
    padding: 80px 40px;
    background-color: #e0e0e0;
}

.map-info p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f2d;
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.service-confirmation {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 32px 0;
    border-left: 4px solid #2c5f2d;
}

.service-confirmation p {
    font-size: 16px;
    margin: 0;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    padding: 24px;
    background-color: #fafafa;
    border-top: 3px solid #2c5f2d;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2c5f2d;
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4621;
}

.legal-update {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

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

    .three-col-layout,
    .spread-layout,
    .two-col-asymmetric,
    .service-header-split,
    .contact-layout {
        flex-direction: column;
    }

    .services-grid-magazine,
    .values-grid,
    .footer-columns,
    .steps-grid {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 16px;
    }
}