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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-magazine {
    background-color: #ffffff;
    padding: 80px 40px;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.hero-image-column {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-editorial {
    padding: 60px 40px;
    background-color: #f9fafb;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.magazine-grid {
    padding: 80px 40px;
    background-color: #ffffff;
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.card-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #fff;
}

.card-vertical img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.card-vertical .card-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-vertical .card-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.card-horizontal {
    display: flex;
    gap: 40px;
    align-items: center;
}

.card-horizontal .card-text {
    flex: 1;
}

.card-horizontal .card-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-horizontal .card-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.card-horizontal img {
    flex: 1;
    width: 50%;
    height: 350px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.card-full-width {
    background-color: #f4f6f8;
    padding: 60px;
}

.card-full-width h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.recipe-list {
    display: flex;
    gap: 40px;
}

.recipe-item {
    flex: 1;
}

.recipe-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2ecc71;
}

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

.testimonial-section {
    background-color: #2ecc71;
    padding: 80px 40px;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    border-left: 4px solid #ffffff;
    padding-left: 30px;
}

.testimonial p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 18px;
    color: #ffffff;
    font-style: normal;
    opacity: 0.9;
}

.services-preview {
    padding: 90px 40px;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #27ae60;
}

.form-section {
    padding: 90px 40px;
    background-color: #f4f6f8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.submit-btn {
    width: 100%;
    background-color: #2ecc71;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 50px 40px;
    background-color: #fff9e6;
    border-top: 2px solid #ffd966;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2ecc71;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #2ecc71;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    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: 30px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.page-header {
    background-color: #2ecc71;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.page-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-box {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-info-box .email-display {
    color: #2ecc71;
    font-weight: 600;
}

.about-hero {
    background-color: #f4f6f8;
    padding: 70px 40px;
}

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

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.about-story {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-container h1 {
    font-size: 42px;
    color: #2ecc71;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-container .selected-service {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin: 30px 0;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background-color: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container .back-link:hover {
    background-color: #27ae60;
}

@media (max-width: 768px) {
    .hero-content-split {
        flex-direction: column;
    }

    .card-horizontal {
        flex-direction: column;
    }

    .recipe-list {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .about-story {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }
}