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

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

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

.main-header {
    background-color: #fff;
    border-bottom: 2px solid #2c2c2c;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    letter-spacing: 1px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    margin-top: 40px;
    padding: 0 20px;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #e8e8e8;
}

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

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-left: 4px solid #7a9c59;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.hero-overlay p {
    font-size: 18px;
    color: #555;
}

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

.sidebar-card {
    background-color: #f8f8f8;
    padding: 25px;
    border: 1px solid #ddd;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.sidebar-card p {
    font-size: 15px;
    color: #555;
}

.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-col-wide {
    flex: 2;
}

.intro-col-narrow {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #2c2c2c;
}

.intro-section p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.insight-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.insight-text p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.insight-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.services-preview {
    padding: 80px 20px;
    background-color: #fff;
}

.section-title-centered {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.service-card-mag {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-card-mag h3 {
    font-size: 24px;
    margin: 20px 20px 12px 20px;
    color: #2c2c2c;
}

.service-card-mag p {
    margin: 0 20px 15px 20px;
    font-size: 16px;
    color: #555;
    flex-grow: 1;
}

.price-tag {
    margin: 0 20px 15px 20px;
    font-size: 22px;
    font-weight: bold;
    color: #7a9c59;
}

.cta-btn {
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #7a9c59;
}

.testimonial-section {
    padding: 70px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

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

.testimonial-quote {
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    border-left: 4px solid #7a9c59;
    padding-left: 30px;
}

.testimonial-quote p {
    margin-bottom: 20px;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.form-layout-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.form-intro p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7a9c59;
    font-weight: bold;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #ddd;
}

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

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

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

.form-group input,
.form-group select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: inherit;
}

.submit-btn {
    padding: 14px 28px;
    background-color: #7a9c59;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c2c2c;
}

.cookie-content a {
    color: #7a9c59;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #7a9c59;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #6a8c49;
}

.cookie-reject {
    background-color: #ddd;
    color: #2c2c2c;
}

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    color: #555;
}

.about-story {
    padding: 80px 20px;
    background-color: #fff;
}

.story-layout {
    display: flex;
    gap: 40px;
}

.story-text-main {
    flex: 2;
}

.story-text-main h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.story-text-main p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.story-image-sidebar {
    flex: 1;
    background-color: #e8e8e8;
}

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

.methodology-section {
    padding: 60px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

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

.method-card {
    flex: 1;
    background-color: #3a3a3a;
    padding: 30px;
    border-left: 3px solid #7a9c59;
}

.method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.method-card p {
    font-size: 16px;
    color: #ccc;
}

.team-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.approach-col {
    flex: 1;
}

.approach-col p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.values-section {
    padding: 80px 20px;
    background-color: #fff;
}

.centered-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 25px;
    background-color: #f8f8f8;
    border-left: 4px solid #7a9c59;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.services-detailed {
    padding: 60px 20px;
    background-color: #fff;
}

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

.service-content-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-text-wide {
    flex: 2;
}

.service-text-wide h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.price-display {
    font-size: 26px;
    font-weight: bold;
    color: #7a9c59;
    margin-bottom: 20px;
}

.service-text-wide p,
.service-text-wide ul {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.service-text-wide ul {
    margin-left: 25px;
}

.service-text-wide ul li {
    margin-bottom: 10px;
}

.cta-btn-large {
    padding: 14px 28px;
    background-color: #7a9c59;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-large:hover {
    background-color: #2c2c2c;
}

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

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

.cta-final {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-final h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.contact-main {
    padding: 80px 20px;
    background-color: #fff;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.info-group {
    margin-bottom: 30px;
}

.info-group h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

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

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

.contact-additional {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contact-additional h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-lead {
    font-size: 22px;
    color: #7a9c59;
    margin-bottom: 40px;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

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

.selected-service-display {
    background-color: #fff;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #7a9c59;
}

.selected-service-display p {
    margin: 0;
    font-size: 18px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.thanks-link {
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #7a9c59;
}

.thanks-note {
    background-color: #fff8dc;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid #e6d8a0;
}

.thanks-note p {
    margin: 0;
    font-size: 15px;
}

.legal-content {
    padding: 60px 20px;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-grid,
    .intro-columns,
    .insight-layout,
    .services-grid-magazine,
    .form-layout-split,
    .footer-columns,
    .story-layout,
    .methodology-grid,
    .approach-columns,
    .service-content-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-block.reverse .service-content-layout {
        flex-direction: column;
    }

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

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

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