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

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

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

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.ad-label {
    font-size: 13px;
    color: #856404;
    font-family: 'Arial', sans-serif;
}

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

.main-nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #8b4513;
}

.hero-editorial {
    background: #ffffff;
    padding: 80px 0 60px;
}

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

.hero-text h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.hero-image {
    margin-top: 40px;
    background-color: #f5f5f5;
}

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

.content-magazine {
    padding: 80px 0;
    background: #f9f9f9;
}

.magazine-grid {
    display: flex;
    gap: 60px;
}

.main-column {
    flex: 2;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.main-column h3 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 400;
}

.main-column h4 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #2c2c2c;
}

.main-column p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #3a3a3a;
}

.inline-visual {
    margin: 50px 0;
    background-color: #f0f0f0;
}

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

.text-cta {
    display: inline-block;
    margin-top: 30px;
    font-size: 18px;
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.text-cta:hover {
    color: #5d2f0b;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h5 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

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

.testimonial-card {
    background: #f8f8f8;
    padding: 30px;
    border-left: 4px solid #8b4513;
}

.testimonial-card blockquote {
    font-style: italic;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-card cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

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

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h3 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-intro p {
    font-size: 18px;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fafafa;
    width: calc(33.333% - 20px);
    min-width: 300px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 500;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #555;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #8b4513;
    margin: 0 24px 20px;
}

.btn-select {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover {
    background: #5d2f0b;
}

.btn-select.selected {
    background: #2d5016;
}

.form-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.form-wrapper {
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-wrapper h3 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 400;
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-row label {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-row input,
.form-row textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Arial', sans-serif;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-left: 4px solid #2d5016;
}

.selected-service-display p {
    font-size: 16px;
    color: #333;
}

.selected-service-display strong {
    font-weight: 600;
}

.btn-submit {
    padding: 16px 32px;
    background: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover:not(:disabled) {
    background: #5d2f0b;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: #999;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff8e1;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.main-footer {
    background: #2c2c2c;
    color: #cccccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h6 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

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

.page-hero {
    background: #ffffff;
    padding: 80px 0 50px;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

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

.content-block {
    flex: 1;
}

.content-block h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.visual-block {
    flex: 1;
    background-color: #f0f0f0;
}

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

.expertise-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.expertise-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-left: 4px solid #8b4513;
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

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

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

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

.value-card {
    flex: 1;
    padding: 40px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.services-detail {
    padding: 80px 0;
}

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

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

.service-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #444;
}

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

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 600;
    color: #8b4513;
}

.cta-section {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b4513;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background: #5d2f0b;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #666;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    margin-left: 16px;
}

.btn-secondary:hover {
    background: #444;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.info-block .note {
    font-size: 14px;
    font-style: italic;
    color: #888;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    background-color: #f0f0f0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-note {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.contact-note p {
    font-size: 17px;
    color: #555;
}

.contact-note a {
    color: #8b4513;
    font-weight: 500;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2d5016;
}

.thanks-content .lead {
    font-size: 22px;
    margin-bottom: 40px;
}

.confirmation-details {
    background: #e8f5e9;
    padding: 20px 30px;
    margin: 40px auto;
    max-width: 600px;
    border-left: 4px solid #2d5016;
}

.confirmation-details p {
    font-size: 17px;
    color: #333;
}

.thanks-content > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

.next-steps {
    margin: 60px auto 60px;
    text-align: left;
    max-width: 600px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 400;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 17px;
    line-height: 2;
    color: #555;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 400;
}

.legal-content .updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #444;
}

.legal-content a {
    color: #8b4513;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #5d2f0b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.cookie-actions button {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Arial', sans-serif;
}

#accept-cookies {
    background: #2d5016;
    color: #ffffff;
}

#accept-cookies:hover {
    background: #1f3710;
}

#reject-cookies {
    background: #666;
    color: #ffffff;
}

#reject-cookies:hover {
    background: #555;
}

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

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .split-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

    .main-column {
        padding: 30px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .form-wrapper {
        padding: 30px;
    }
}