/* Trek Trailblazer - Retro Style CSS */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #f5f2e8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #8b4513; /* Saddle Brown */
}

h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #d2691e;
}

a {
    color: #d2691e; /* Chocolate */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #8b4513;
    text-decoration: underline;
}

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

/* Retro Elements */
.retro-border {
    border: 3px solid #8b4513;
    border-radius: 15px;
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    box-shadow: 
        inset 0 0 0 2px #d2691e,
        0 4px 8px rgba(139, 69, 19, 0.2);
}

.retro-shadow {
    box-shadow: 
        0 6px 12px rgba(139, 69, 19, 0.15),
        0 2px 4px rgba(139, 69, 19, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: #fff;
    border: 2px solid #8b4513;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    color: #8b4513;
    border: 2px solid #d2691e;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
    color: #654321;
    text-decoration: none;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #d2691e 100%);
    color: #fff;
    border: 2px solid #d2691e;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: #fff;
    text-decoration: none;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
    border-bottom: 3px solid #d2691e;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5f2e8;
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.nav-menu li a {
    color: #f5f2e8;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #d2691e;
    color: #fff;
    text-decoration: none;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 50%, #ddd5c7 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    color: #654321;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.2);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #654321;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #fff 0%, #f5f2e8 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #d2691e;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease;
}

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

.info-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #8b4513;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(139, 69, 19, 0.3);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: #654321;
}

.service-card ul li::before {
    content: '✓ ';
    color: #d2691e;
    font-weight: bold;
}

/* Blog Section */
.blog-preview {
    background: linear-gradient(135deg, #fff 0%, #f5f2e8 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #d2691e;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: #8b4513;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #d2691e;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #8b4513;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #d2691e;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #654321;
}

.testimonial-author strong {
    color: #8b4513;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subscription-info h2 {
    color: #f5f2e8;
    margin-bottom: 1.5rem;
}

.subscription-info p {
    color: #e8e2d5;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #e8e2d5;
}

.benefits-list li::before {
    content: '✓ ';
    color: #ff6b35;
    font-weight: bold;
    margin-right: 0.5rem;
}

.subscription-form {
    background: rgba(245, 242, 232, 0.95);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #d2691e;
}

.subscription-form h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d2691e;
    border-radius: 25px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #654321;
    font-size: 0.9rem;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
}

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

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #d2691e;
    text-align: center;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
}

.contact-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #654321 0%, #4a3018 100%);
    color: #f5f2e8;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #d2691e;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #e8e2d5;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #d2691e;
    color: #e8e2d5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(139, 69, 19, 0.3);
    z-index: 1001;
    border-top: 3px solid #d2691e;
}

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

.cookie-content h3 {
    color: #d2691e;
    margin-bottom: 0.5rem;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-accept-all:hover {
    background: #8b4513;
}

.btn-necessary {
    background: #f5f2e8;
    color: #8b4513;
    border: 2px solid #d2691e;
}

.btn-necessary:hover {
    background: #e8e2d5;
}

.btn-settings {
    background: transparent;
    color: #f5f2e8;
    border: 2px solid #f5f2e8;
}

.btn-settings:hover {
    background: #f5f2e8;
    color: #8b4513;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: #f5f2e8;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    color: #e8e2d5;
    font-size: 1.2rem;
}

.about-main {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: -0.5rem;
    color: #d2691e;
    font-weight: bold;
}

.team {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #8b4513;
    text-align: center;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
}

.member-role {
    color: #d2691e;
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-overview {
    background: linear-gradient(135deg, #fff 0%, #f5f2e8 100%);
}

.service-item {
    background: #f5f2e8;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #d2691e;
    text-align: center;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.statistics {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: #d2691e;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #e8e2d5;
    font-size: 1.1rem;
}

.about-cta {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: #f5f2e8;
    text-align: center;
}

.cta-content h2 {
    color: #f5f2e8;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e8e2d5;
    margin-bottom: 2rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    color: #f5f2e8;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    color: #e8e2d5;
    font-size: 1.2rem;
}

.blog-main {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
}

.featured-article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #8b4513;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

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

.featured-article .article-content {
    padding: 2rem;
}

.article-category {
    background: #d2691e;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.read-more {
    color: #d2691e;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    color: #8b4513;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.newsletter-signup {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-content h3 {
    color: #f5f2e8;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #e8e2d5;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #d2691e;
    border-radius: 25px;
    font-family: 'Georgia', serif;
}

/* Article Page Styles */
.article-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.article-image {
    text-align: center;
    margin-bottom: 3rem;
}

.article-image img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #d2691e;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.1);
}

.article-intro .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b4513;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #d2691e;
}

.meal-plan {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #d2691e;
    margin: 2rem 0;
}

.meal-plan h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.article-cta {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: #f5f2e8;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: #f5f2e8;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #e8e2d5;
    margin-bottom: 1.5rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #d2691e;
}

.back-to-blog {
    color: #8b4513;
    font-weight: bold;
    text-decoration: none;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    color: #654321;
    font-weight: bold;
}

.article-share a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.article-share a:hover {
    transform: scale(1.2);
}

.related-articles {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
}

/* Specific Article Styles */
.functions-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.function-item, .benefit-item {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #d2691e;
}

.function-item h3, .benefit-item h3 {
    margin-bottom: 1rem;
}

.superfood-item {
    background: linear-gradient(135deg, #fff 0%, #f5f2e8 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #8b4513;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
}

.superfood-item h2 {
    color: #8b4513;
    border-bottom: 2px solid #d2691e;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.tips-section {
    background: linear-gradient(135deg, #e8e2d5 0%, #ddd5c7 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #8b4513;
    margin: 2rem 0;
}

.water-rich-foods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.water-rich-foods h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.mistakes-section {
    margin: 2rem 0;
}

.mistakes-section h3 {
    margin-bottom: 0.5rem;
}

.myths-section {
    margin: 2rem 0;
}

.myths-section h3 {
    margin-bottom: 0.5rem;
}

.meal-prep-plan {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #8b4513;
    margin: 2rem 0;
}

.meal-prep-plan h3 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 2rem;
}

.meal-prep-plan h4 {
    color: #d2691e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Thanks Page Styles */
.thanks-page {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #d2691e;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #654321;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.thanks-details {
    margin: 3rem 0;
}

.thanks-info {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #d2691e;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #d2691e;
}

.contact-details {
    margin-top: 1rem;
}

/* Legal Pages Styles */
.legal-page {
    background: linear-gradient(135deg, #f5f2e8 0%, #e8e2d5 100%);
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #d2691e;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.1);
}

.legal-content h1 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2, .legal-content h3 {
    color: #8b4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #d2691e;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
}

.cookies-table th {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f5f2e8;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8e2d5;
}

.cookies-table tbody tr:hover {
    background-color: #f5f2e8;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #d2691e;
}

.effective-date {
    font-weight: bold;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #d2691e;
    color: #8b4513;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .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-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .subscription-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article img {
        height: 250px;
    }

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .functions-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .info-grid, .services-grid, .blog-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .article-content, .thanks-content, .legal-content {
        padding: 2rem 1.5rem;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th, .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus {
    outline: 3px solid #d2691e;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar, .cookie-banner, .footer {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .legal-content, .article-content {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #fff;
        --accent-color: #ff0000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
