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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    padding: 60px 5% 80px;
    background-color: #ffffff;
}

.hero-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-column {
    flex: 1;
    min-width: 300px;
}

.hero-text-column h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-image-column {
    flex: 1;
    min-width: 300px;
}

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

.three-column-intro {
    display: flex;
    gap: 40px;
    padding: 60px 5%;
    background-color: #f8f8f8;
    flex-wrap: wrap;
}

.column-block {
    flex: 1;
    min-width: 250px;
}

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

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

.editorial-feature {
    display: flex;
    gap: 50px;
    padding: 80px 5%;
    background-color: #ffffff;
    align-items: flex-start;
    flex-wrap: wrap;
}

.feature-text-wide {
    flex: 2;
    min-width: 350px;
}

.feature-text-wide h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.feature-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.feature-image-sidebar {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.feature-image-sidebar img {
    width: 100%;
    height: auto;
}

.highlighted-insight {
    padding: 80px 5%;
    background-color: #f3f3f3;
}

.insight-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.insight-card img {
    width: 100%;
    height: auto;
}

.insight-card h4 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

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

.asymmetric-content {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: #ffffff;
    align-items: center;
    flex-wrap: wrap;
}

.content-offset-left {
    flex: 1.2;
    min-width: 320px;
}

.content-offset-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-offset-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.content-offset-right {
    flex: 1;
    min-width: 300px;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.content-offset-right img {
    width: 100%;
    height: auto;
}

.services-preview {
    padding: 80px 5%;
    background-color: #fafafa;
}

.services-intro-text {
    text-align: center;
    margin-bottom: 50px;
}

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

.services-intro-text p {
    font-size: 18px;
    color: #555;
}

.services-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #c17a3f;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #c17a3f;
}

.testimonial-feature {
    padding: 60px 5%;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrap blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-wrap cite {
    font-size: 16px;
    font-style: normal;
    color: #ccc;
}

.form-section-integrated {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
}

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

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

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c17a3f;
}

.submit-btn {
    padding: 16px 32px;
    font-size: 18px;
    background-color: #c17a3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.closing-editorial {
    padding: 80px 5%;
    background-color: #f8f8f8;
}

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

.closing-text-narrow h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.closing-text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.disclaimer-section {
    padding: 50px 5%;
    background-color: #fff8e6;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 5% 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #c17a3f;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #555;
    color: #ffffff;
}

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

.about-page,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.about-hero,
.services-header,
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1,
.services-header h1,
.contact-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-lead,
.services-intro,
.contact-header p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    margin-bottom: 60px;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

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

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

.team-approach {
    background-color: #f8f8f8;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 60px;
}

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

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.about-cta {
    text-align: center;
}

.cta-box {
    background-color: #c17a3f;
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #c17a3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    margin-bottom: 60px;
}

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

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

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.service-includes li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c17a3f;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

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

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #c17a3f;
}

.service-select-btn {
    padding: 12px 28px;
    background-color: #c17a3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-form-section {
    background-color: #f8f8f8;
    padding: 60px 5%;
    border-radius: 8px;
}

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

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-wrapper p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
}

.service-request-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-submit-btn {
    padding: 16px 32px;
    font-size: 18px;
    background-color: #c17a3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #a66530;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
}

.contact-additional {
    background-color: #f8f8f8;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.additional-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.contact-cta {
    text-align: center;
}

.cta-container {
    background-color: #c17a3f;
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #c17a3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

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

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

.thanks-lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.thanks-details p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #c17a3f;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

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

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

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
}

.thanks-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #c17a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-btn:hover {
    background-color: #a66530;
}

.thanks-btn.secondary {
    background-color: #555;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

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

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-text-column h1 {
        font-size: 36px;
    }

    .hero-content-split {
        gap: 30px;
    }

    .three-column-intro {
        flex-direction: column;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

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