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

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #d84315;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #bf360c;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ad-disclosure {
    background-color: #fff3e0;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #e65100;
    border-bottom: 1px solid #ffcc80;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d84315;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d84315;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

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

.hero-magazine {
    position: relative;
    overflow: hidden;
    background-color: #3e2723;
}

.hero-image-large {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    color: #ffffff;
    max-width: 800px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 600px;
    color: #ffccbc;
}

.intro-columns {
    padding: 5rem 0;
    background-color: #ffffff;
}

.column-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

.feature-card {
    background-color: #fff8f0;
    padding: 1.5rem;
    border-left: 4px solid #d84315;
}

.feature-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #5d4037;
}

.services-preview {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-magazine {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-magazine:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    color: #d84315;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4e342e;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: #d84315;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #bf360c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(216, 67, 21, 0.3);
}

.philosophy-split {
    padding: 5rem 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.testimonials-inline {
    padding: 5rem 0;
    background-color: #fff3e0;
}

.testimonials-inline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 5px solid #ff6f00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4e342e;
    font-size: 1.1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #d84315;
    font-size: 0.95rem;
}

.cta-form-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.form-wrapper {
    background-color: #fafafa;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

.form-wrapper h2 {
    margin-bottom: 1rem;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #5d4037;
}

.form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3e2723;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #d7ccc8;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.2rem 3rem;
    background-color: #d84315;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #bf360c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216, 67, 21, 0.4);
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #6d4c41;
    text-align: center;
    line-height: 1.6;
}

.footer-main {
    background-color: #3e2723;
    color: #d7ccc8;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffccbc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d7ccc8;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #d7ccc8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5d4037;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #3e2723;
}

.cookie-content a {
    color: #d84315;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background-color: #d84315;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 0.8rem 2rem;
    background-color: #e0e0e0;
    color: #3e2723;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff3e0;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 4rem 2rem;
}

.thanks-content h1 {
    color: #d84315;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4e342e;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background-color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.content-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

.content-page h1 {
    margin-bottom: 2rem;
}

.content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-page p {
    margin-bottom: 1.2rem;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff3e0, #ffccbc);
}

.about-hero h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4e342e;
}

.about-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-page {
    padding: 5rem 0;
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #d84315;
}

.info-item p {
    color: #4e342e;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
}

@media (max-width: 1024px) {
    .column-layout,
    .split-content,
    .about-story-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-card-magazine,
    .service-card-magazine:nth-child(even) {
        flex-direction: column;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-image-large {
        height: 400px;
    }

    .container-wide,
    .nav-primary {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}