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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fefefe;
}

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

.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 #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-area h1 {
    font-size: 28px;
    color: #2d2d2d;
    font-weight: 700;
    margin-bottom: 2px;
}

.tagline {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

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

.main-nav a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.hero-main {
    flex: 2;
    min-width: 300px;
    position: relative;
    background-color: #f5f5f5;
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

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

.hero-overlay h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 18px;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-card {
    background-color: #f9f9f9;
    overflow: hidden;
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card h3 {
    font-size: 20px;
    margin: 16px 20px 8px;
    font-weight: 600;
}

.featured-card p {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
}

.intro-text {
    background-color: #faf8f5;
    padding: 60px 20px;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.recipe-grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recipe-large,
.recipe-medium,
.recipe-small,
.recipe-wide {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.recipe-large {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.recipe-large img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.recipe-large .recipe-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.recipe-medium {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.recipe-medium img {
    flex: 1;
    min-width: 250px;
    height: 280px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.recipe-medium .recipe-content {
    flex: 1.5;
    min-width: 250px;
    padding: 30px;
}

.recipe-wide {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.recipe-wide .recipe-content-left {
    flex: 1.2;
    min-width: 300px;
    padding: 50px;
}

.recipe-wide img {
    flex: 1;
    min-width: 300px;
    height: 450px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.recipe-small {
    display: flex;
    gap: 0;
}

.recipe-small img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.recipe-small .recipe-content {
    flex: 1;
    padding: 25px;
}

.recipe-time {
    display: inline-block;
    background-color: #d87a3a;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.recipe-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d2d2d;
}

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

.recipe-tags {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.recipe-tags li {
    font-size: 13px;
    color: #777;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.ingredient-list {
    list-style: none;
    margin: 20px 0;
}

.ingredient-list li {
    font-size: 15px;
    color: #555;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.ingredient-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d87a3a;
    font-weight: bold;
}

.nutrition-info {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

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

.service-cards-horizontal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #fff;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.service-card.highlighted {
    border: 3px solid #d87a3a;
    transform: scale(1.02);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d2d2d;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 72px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #d87a3a;
    margin-bottom: 20px;
}

.cta-select {
    background-color: #d87a3a;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-select:hover {
    background-color: #c46a2e;
}

.testimonial-strip {
    background-color: #2d2d2d;
    color: #fff;
    padding: 60px 20px;
}

.testimonial-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-content blockquote {
    flex: 1;
    min-width: 280px;
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 14px;
    color: #bbb;
}

.cta-section-inline {
    background-color: #d87a3a;
    padding: 80px 20px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #d87a3a;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2d2d2d;
    color: #bbb;
    padding: 60px 20px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.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: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #d87a3a;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 25px 20px;
    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: 30px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #d87a3a;
    color: #fff;
}

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

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

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

.form-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.form-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #2d2d2d;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #d87a3a;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.page-hero-simple {
    background-color: #f4f1ed;
    padding: 80px 20px;
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text-centered p {
    font-size: 20px;
    color: #555;
}

.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.story-layout.reverse {
    flex-direction: row-reverse;
}

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

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 30px;
    background-color: #faf8f5;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.team-philosophy {
    max-width: 800px;
    margin: 0 auto;
}

.team-philosophy h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.team-philosophy p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.services-detailed {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #d87a3a;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #d87a3a;
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    background-color: #f9f9f9;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.price-large {
    font-size: 38px;
    font-weight: 700;
    color: #d87a3a;
}

.service-body {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.service-body img {
    flex: 1;
    min-width: 300px;
    height: 350px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-description {
    flex: 1.2;
    min-width: 300px;
    padding: 40px;
}

.service-description h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d87a3a;
    font-weight: bold;
    font-size: 18px;
}

.cta-section-bottom {
    background-color: #f4f1ed;
    padding: 80px 20px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #2d2d2d;
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #d87a3a;
}

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

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

.contact-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #faf8f5;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.thanks-content {
    background-color: #fff;
    padding: 60px 40px;
    border: 2px solid #e0e0e0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #d87a3a;
    color: #fff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.selected-service {
    font-size: 17px;
    color: #2d2d2d;
    margin-bottom: 30px;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.next-steps ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #d87a3a;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #d87a3a;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .main-nav {
        gap: 20px;
        font-size: 14px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 15px;
    }

    .hero-main img {
        height: 400px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .recipe-large,
    .recipe-medium,
    .recipe-wide {
        flex-direction: column;
    }

    .recipe-large img,
    .recipe-medium img,
    .recipe-wide img {
        width: 100%;
        height: 250px;
    }

    .service-cards-horizontal {
        flex-direction: column;
    }

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

    .modal-content {
        padding: 30px 20px;
    }

    .story-layout,
    .story-layout.reverse {
        flex-direction: column;
    }

    .legal-content {
        padding: 30px 20px;
    }
}
