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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== CSS Custom Properties ===== */
:root {
    --primary-color: #2d7a2d;
    --secondary-color: #4a9b4a;
    --accent-color: #f4a261;
    --text-color: #333;
    --text-light: #555;
    --text-light-contrast: #333;
    --text-muted: #999;
    --background-color: #fafafa;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}



.lead {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 122, 45, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 8px;
}

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

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(45, 122, 45, 0.1);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #d4edda 100%);
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.hero-buttons .btn {
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45, 122, 45, 0.2);
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== Company Info Block ===== */
.company-info {
    padding: 80px 0;
    background: var(--white);
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    background: var(--light-gray);
    transition: var(--transition);
    transform: rotate(-2deg);
}

.info-card:nth-child(2) {
    transform: rotate(1deg);
}

.info-card:nth-child(3) {
    transform: rotate(-1deg);
}

.info-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Services Block ===== */
.services {
    padding: 80px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 50px 10px 50px 10px;
    transform: rotate(-2deg);
}

.service-card:nth-child(even) {
    transform: rotate(2deg);
    border-radius: 10px 50px 10px 50px;
}

.service-card.reverse-diagonal {
    grid-template-columns: 2fr 1fr;
}

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    margin-top: 1rem;
}

.service-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Nutrition Principles Block ===== */
.nutrition-principles {
    padding: 80px 0;
    background: var(--white);
}

.principles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nutrition-pyramid {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyramid-icon {
    font-size: 4rem;
    color: var(--white);
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.principle-item:hover {
    background: var(--light-gray);
    transform: translateX(10px);
}

.principle-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.principle-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Newsletter Block ===== */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.newsletter-compact {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.newsletter-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inline-form-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.inline-form-group input {
    flex: 1;
    max-width: 300px;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.inline-form-group button {
    padding: 12px 24px;
    white-space: nowrap;
}

.privacy-compact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-compact input[type="checkbox"] {
    margin-right: 0.5rem;
}

.privacy-compact a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.form-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ===== Reviews Block ===== */
.reviews {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card.floating {
    transform: rotate(-2deg);
}

.review-card.tilted {
    transform: rotate(2deg);
}

.review-card.shadow-deep {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Page Header ===== */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.header-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.header-visual {
    margin-top: 2rem;
}

.header-icon {
    font-size: 4rem;
    opacity: 0.7;
}

/* ===== About Page Styles ===== */
.mission {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.point i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.about-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.about-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== Team Section ===== */
.team {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.member-role {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.member-qualifications {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.qualification {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ===== Values Section ===== */
.values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--light-gray);
    transform: scale(1.05);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

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

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stat-number i {
    font-size: 2rem;
}

/* ===== History Page Styles ===== */
.timeline {
    padding: 80px 0;
    background: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item.left .timeline-content {
    margin-right: 60%;
}

.timeline-item.right .timeline-content {
    margin-left: 60%;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.timeline-item.left .timeline-icon {
    right: -85px;
}

.timeline-item.right .timeline-icon {
    left: -85px;
}

/* ===== Founder Story ===== */
.founder-story {
    padding: 80px 0;
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-quote {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    margin: 2rem 0;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.founder-quote cite {
    font-weight: bold;
    color: var(--primary-color);
}

.founder-illustration {
    position: relative;
    text-align: center;
}

.founder-icon {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.vision-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.vision-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    animation: orbit 10s linear infinite;
}

.vision-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.vision-icon:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.vision-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* ===== Achievements ===== */
.achievements {
    padding: 80px 0;
    background: var(--white);
}

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

.achievement-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    background: var(--light-gray);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ===== Future Vision ===== */
.future-vision {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--light-gray), var(--white));
}

.vision-goals {
    margin-top: 3rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.goal-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ===== Blog Styles ===== */
.blog-grid {
    padding: 80px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

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

.blog-visual {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-content h2 {
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-tags {
    margin: 1rem 0;
}

.tag {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* ===== Blog Sidebar ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.popular-post:hover {
    background: var(--light-gray);
}

.post-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.post-content h4 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.post-content h4 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.newsletter-sidebar-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-sidebar-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.newsletter-sidebar-form button {
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* ===== Article Styles ===== */
.article-container {
    background: var(--white);
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 80px;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.article-meta {
    margin-bottom: 2rem;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.article-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 2rem 0;
    color: white;
}

.article-visual {
    text-align: center;
    margin-top: 2rem;
}

.article-icon {
    font-size: 4rem;
    opacity: 0.7;
}

.article-content {
    padding: 80px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.main-content {
    max-width: 800px;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.highlight-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.highlight-box.warning {
    border-left-color: var(--accent-color);
    background: #fff3cd;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box ul {
    margin-left: 1rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
}

/* ===== Nutrient Breakdown ===== */
.nutrient-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.nutrient-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nutrient-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nutrient-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.nutrient-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.good-sources {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

/* ===== Plate Guide ===== */
.plate-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.plate-section {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.plate-section.vegetables {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: var(--white);
}

.plate-section.grains {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    color: var(--white);
}

.plate-section.protein {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
    color: var(--white);
}

.plate-section:hover {
    transform: scale(1.05);
}

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

/* ===== Golden Rules ===== */
.golden-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.rule-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.rule-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.rule-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Research Findings ===== */
.research-findings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.finding-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.finding-item:hover {
    transform: scale(1.05);
}

.finding-stat {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ===== Action Plan ===== */
.action-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Article Conclusion ===== */
.article-conclusion {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    margin: 3rem 0;
}

.article-conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.article-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.article-tags h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Article Sidebar ===== */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-article:hover {
    background: var(--light-gray);
}

/* ===== Article Navigation ===== */
.article-navigation {
    background: var(--light-gray);
    padding: 2rem 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Superfood Analysis ===== */
.superfood-analysis {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.superfood-item {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.superfood-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.superfood-header h3 {
    color: var(--white);
    margin: 0;
}

.superfood-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.myth-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--accent-color);
}

.superfood-content {
    padding: 2rem;
}

.superfood-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.comparison {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.verdict {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* ===== Map Container Styling ===== */
.map-container {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: var(--border-radius);
}

/* ===== Local Superfoods ===== */
.local-superfoods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.local-food-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.local-food-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.food-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.food-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Comparison Table ===== */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.winner {
    color: var(--primary-color);
    font-weight: bold;
}

.tie {
    color: var(--text-muted);
    font-style: italic;
}

/* ===== Smart Nutrition Tips ===== */
.smart-nutrition-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-category ul {
    margin-left: 1rem;
}

.tip-category li {
    margin-bottom: 0.5rem;
    position: relative;
}

.tip-category li::before {
    content: '→';
    position: absolute;
    left: -1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Warning Signs ===== */
.warning-signs {
    background: #fff3cd;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.warning-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ===== Rights Grid ===== */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.right-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.right-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.right-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Recipe Collection ===== */
.recipe-collection {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.recipe-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.recipe-card.featured {
    border: 3px solid var(--primary-color);
}

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

.recipe-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recipe-icon {
    font-size: 2rem;
}

.recipe-meta h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.recipe-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.recipe-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.ingredients-list,
.preparation-steps {
    margin: 1rem 0;
}

.ingredients-list li,
.preparation-steps li {
    padding: 0.25rem 0;
    margin-bottom: 0.25rem;
}

.preparation-steps {
    counter-reset: step-counter;
}

.preparation-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2rem;
}

.preparation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.nutrition-info {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.nutrition-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.nutrition-facts span {
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.9rem;
}

/* ===== Seasonal Calendar ===== */
.seasonal-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.month-column {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.month-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.month-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.month-column li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.month-column i {
    color: var(--primary-color);
}

/* ===== Cooking Tips ===== */
.cooking-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card ul {
    margin-left: 1rem;
}

.tip-card li {
    margin-bottom: 0.5rem;
    position: relative;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Contact Styles ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 45, 0.1);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item.required {
    grid-column: 1 / -1;
}

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

.checkbox-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.form-submit {
    margin-top: 1rem;
}

/* ===== Contact Info Container ===== */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-content {
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.hours {
    color: var(--text-muted);
}

.emergency-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.emergency-note i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.team-member i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.team-member a {
    color: var(--primary-color);
}

/* ===== Quick Contact ===== */
.quick-contact {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.quick-option {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.option-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-option p {
    margin-bottom: 1.5rem;
}

/* ===== Location Details ===== */
.location-details {
    padding: 80px 0;
    background: var(--white);
}

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

.transport-info,
.parking-info {
    margin-bottom: 2rem;
}

.transport-info h3,
.parking-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-info ul,
.parking-info ul {
    margin-left: 1rem;
}

.transport-info li,
.parking-info li {
    margin-bottom: 0.5rem;
    position: relative;
}

.transport-info li::before,
.parking-info li::before {
    content: '→';
    position: absolute;
    left: -1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.map-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-icon {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.map-overlay h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== Thank You Page ===== */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.thank-you-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.success-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.success-icon {
    font-size: 8rem;
    color: var(--white);
    animation: checkmark 1s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.success-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-color);
    animation: float-particles 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

.thank-you-text h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-text .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

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

.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== Additional Resources ===== */
.additional-resources {
    padding: 80px 0;
    background: var(--white);
}

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

.resource-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 80px 0;
    background: var(--light-gray);
}

.proof-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ===== Legal Styles ===== */
.legal-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.company-details,
.contact-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

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

.purpose-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.purpose-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.purpose-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cookie-type {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.cookie-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.info-box i {
    color: #2196F3;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-box h3 {
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.warning-box i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cancellation-policy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.policy-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.withdrawal-notice {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.withdrawal-notice h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Legal Sidebar ===== */
.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-nav li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.quick-nav li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.deadline-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deadline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.deadline-item i {
    color: var(--primary-color);
}

.deadline-item div {
    text-align: right;
}

.deadline-item strong {
    display: block;
    color: var(--primary-color);
}

.deadline-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Cookie Settings Panel ===== */
.cookie-settings-panel {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.settings-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookie-category {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--light-gray);
    cursor: pointer;
}

.category-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    background-color: white;
    transition: var(--transition);
}

.cookie-toggle:checked + .toggle-label {
    background-color: var(--primary-color);
}

.cookie-toggle:checked + .toggle-label::before {
    transform: translateX(26px);
}

.cookie-toggle {
    display: none;
}

.cookie-toggle:disabled + .toggle-label {
    opacity: 0.6;
    cursor: not-allowed;
}

.category-details {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.cookie-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.cookie-item strong {
    color: var(--primary-color);
}

.settings-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Cookie Detail Sections ===== */
.cookie-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.cookie-detail-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.cookie-detail-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table tr:hover {
    background: var(--light-gray);
}

/* ===== Usage Types ===== */
.usage-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.usage-type {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.usage-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.usage-type i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.usage-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Third Party Services ===== */
.third-party-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== Browser Instructions ===== */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.browser-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.browser-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.browser-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.browser-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.browser-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: white;
}

.footer-bottom p {
    color: white !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .info-card {
        transform: none;
    }
    
    .info-card:hover {
        transform: translateY(-10px);
    }
    
    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        transform: none;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .principles-layout,
    .newsletter-content,
    .mission-content,
    .story-content,
    .location-content,
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: 5px;
        right: auto;
    }
    
    .articles-grid,
    .content-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .category-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .settings-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-icon {
        font-size: 6rem;
    }
    
    .header-icon {
        font-size: 3rem;
    }
    
    .article-icon {
        font-size: 3rem;
    }
    
    .success-icon {
        font-size: 6rem;
    }
    
    .founder-icon {
        font-size: 4rem;
    }
    
    .map-icon {
        font-size: 4rem;
    }
    
    .stats .stat-number {
        font-size: 2rem;
    }
    
    .cookie-table,
    .comparison-table table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .btn,
    .social-links,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

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

/* ===== High Contrast Mode ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #333;
        --text-color: #000;
        --background-color: #fff;
        --border-color: #000;
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #000;
        color: #fff;
    }
}

/* ===== Focus Styles ===== */
*:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== Screen Reader Only ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
