/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

a:hover {
    color: #a93226;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #c0392b;
    color: white;
}

.btn-primary:hover {
    background-color: #a93226;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: #c0392b;
    border: 2px solid #c0392b;
}

.btn-outline:hover {
    background-color: #c0392b;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c0392b;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c0392b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c0392b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

.hero-svg {
    width: 300px;
    height: 300px;
    max-width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    fill: #c0392b;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-svg {
    width: 200px;
    height: 200px;
    max-width: 100%;
    fill: #c0392b;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 20px 0;
}

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

/* Recipe Styles */
.popular-recipes {
    padding: 80px 0;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.recipe-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
    margin-bottom: 20px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.recipe-meta img {
    width: 16px;
    height: 16px;
    fill: #95a5a6;
}

/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card.featured {
    border: 3px solid #c0392b;
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    fill: #c0392b;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6c7d;
}

.service-features img {
    width: 16px;
    height: 16px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c0392b;
    margin: 20px 0;
}

/* Module Cards */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-header {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-icon {
    width: 40px;
    height: 40px;
    fill: white;
}

.module-content {
    padding: 30px;
}

.module-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.module-content li {
    margin-bottom: 8px;
}

.module-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c0392b;
    text-align: center;
    margin-top: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card.featured {
    border: 3px solid #c0392b;
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    fill: #c0392b;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.testimonial-rating img {
    width: 16px;
    height: 16px;
    fill: #f39c12;
}

.testimonial-content {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.testimonial-course {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Stats */
.stats {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 5px;
}

.stat-label {
    color: #5a6c7d;
    font-weight: 500;
}

/* Blog Styles */
.featured-article {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image {
    text-align: center;
}

.featured-svg {
    width: 250px;
    height: 250px;
    fill: #c0392b;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
}

.article-svg {
    width: 100px;
    height: 100px;
    fill: #c0392b;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-category {
    background-color: #c0392b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #95a5a6;
    font-size: 0.9rem;
}

.read-time img {
    width: 14px;
    height: 14px;
}

.article-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #95a5a6;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-stats img {
    width: 14px;
    height: 14px;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c0392b;
    font-weight: 500;
    margin-top: 15px;
}

.article-link img {
    width: 16px;
    height: 16px;
    fill: #c0392b;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: white;
    padding: 120px 0 60px;
}

.breadcrumbs {
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.article-body {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recipe-summary,
.related-articles,
.newsletter-signup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recipe-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item img {
    width: 20px;
    height: 20px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.related-item img {
    width: 40px;
    height: 40px;
    fill: #c0392b;
}

.related-item a {
    color: #2c3e50;
    font-weight: 500;
}

.newsletter-signup form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.newsletter-signup input {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-signup input:focus {
    outline: none;
    border-color: #c0392b;
}

/* Recipe Content Styles */
.ingredients-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
}

.ingredients-list li:before {
    content: '•';
    color: #c0392b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.recipe-steps {
    margin: 40px 0;
}

.step {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.step h4 {
    color: #c0392b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tip-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffeaa7;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.tip-box h3 {
    color: #d68910;
    margin-bottom: 20px;
}

.tip-box ul {
    list-style: none;
    padding: 0;
}

.tip-box li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.tip-box li:before {
    content: '💡';
    position: absolute;
    left: 0;
}

.nutrition-info {
    background-color: #e8f5e8;
    border: 2px solid #d4edda;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.nutrition-info ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.nutrition-info li {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c3e6cb;
}

.nutrition-info li:last-child {
    border-bottom: none;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.form-group label {
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    fill: #c0392b;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 5px;
}

.opening-hours {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.hours-list {
    margin-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #c0392b;
    margin-bottom: 15px;
}

/* Map */
.map-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    margin: 30px 0;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.transport-info ul {
    list-style: none;
    padding: 0;
}

.transport-info li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.transport-info li:last-child {
    border-bottom: none;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    fill: #27ae60;
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.next-steps {
    margin: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
    margin-bottom: 20px;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.details-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.details-card p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

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

/* Waiting Section */
.while-waiting {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.waiting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.waiting-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.waiting-icon {
    width: 80px;
    height: 80px;
    fill: #c0392b;
    margin-bottom: 20px;
}

/* Contact Reminder */
.contact-reminder {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    fill: #c0392b;
    flex-shrink: 0;
}

.contact-method span {
    display: block;
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 5px;
}

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #c0392b;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: #2c3e50;
    margin: 25px 0 15px;
}

.legal-section ul {
    padding-left: 25px;
    margin: 15px 0;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Cookie Table */
.cookie-table {
    margin: 30px 0;
}

.cookie-table h4 {
    color: #c0392b;
    margin: 25px 0 15px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #e9ecef;
    vertical-align: top;
}

.cookie-table td:first-child {
    background-color: #f8f9fa;
    font-weight: 500;
    width: 30%;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
    margin-bottom: 20px;
}

.category-count {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.contact-info img {
    width: 16px;
    height: 16px;
    fill: #c0392b;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Mission Points */
.mission-points {
    margin-top: 30px;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.point-icon {
    width: 30px;
    height: 30px;
    fill: #c0392b;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.team-photo {
    width: 100px;
    height: 100px;
    fill: #c0392b;
    margin-bottom: 20px;
}

.team-role {
    color: #c0392b;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    fill: #c0392b;
    margin-bottom: 20px;
}

/* Additional Services */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.additional-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
}

.additional-icon {
    width: 80px;
    height: 80px;
    fill: #c0392b;
    margin-bottom: 20px;
}

/* Video Testimonials */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    fill: #c0392b;
    background-color: #f8f9fa;
    padding: 40px;
}

.video-info {
    padding: 20px;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-icon {
    width: 80px;
    height: 80px;
    fill: #c0392b;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content,
    .content-grid,
    .featured-content,
    .newsletter-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .map-info {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .modules-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .recipes-grid,
    .stats-grid,
    .categories-grid,
    .values-grid,
    .team-grid,
    .additional-grid,
    .video-grid,
    .stories-grid,
    .faq-grid,
    .waiting-grid,
    .contact-methods,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-svg,
    .section-svg,
    .featured-svg {
        width: 200px;
        height: 200px;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .feature-card,
    .recipe-card,
    .article-card {
        padding: 25px 20px;
    }

    .article-body {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}
