/* Base Styles */
:root {
    --primary-color: #5a8d5a;
    --primary-dark: #3e613e;
    --primary-light: #83b883;
    --secondary-color: #e6a954;
    --secondary-dark: #c98b37;
    --accent-color: #d95829;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #f8f7f3;
    --background-white: #ffffff;
    --background-cream: #f5f2ea;
    --border-color: #e0ddd3;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --font-family-base: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-family-heading: 'Playfair Display', Georgia, serif;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    margin-bottom: 0.8em;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
    background-color: #c34b22;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--primary-color);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Header & Navigation */
header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--background-cream);
    padding: 100px 0;
    text-align: center;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero .container {
    position: relative;
    z-index: 1;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Feature Section */
.features {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

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

.feature-item .icon {
    background-color: rgba(90, 141, 90, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-item .icon svg {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.post-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

.post-content {
    padding: 25px;
}

.post-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.post-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition-fast);
}

.read-more:hover:after {
    margin-left: 8px;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

.cta p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Fun Facts Section */
.fun-facts {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.fact-item .number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.fact-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Blog Page Styles */
.page-banner {
    background-color: var(--background-cream);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-medium);
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-info {
    display: flex;
    padding: 15px;
    background-color: rgba(90, 141, 90, 0.1);
    gap: 15px;
}

.blog-date, .blog-category {
    font-size: 0.875rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.blog-category {
    background-color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 20px;
    color: white;
}

.blog-card h2 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.blog-card p {
    padding: 0 20px 20px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.read-more-btn {
    display: block;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.read-more-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--background-white);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-medium);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    padding: 0 25px;
}

/* Blog Post Styles */
.blog-post {
    padding: 80px 0;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.post-date, .post-category {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-medium);
}

.post-category {
    background-color: var(--primary-light);
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 40px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content h2 {
    margin-top: 40px;
    font-size: 1.8rem;
}

.post-content h3 {
    margin-top: 30px;
    font-size: 1.5rem;
}

.post-content ul, .post-content ol {
    padding-left: 1.5rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 10px;
}

.fun-facts-inline {
    background-color: var(--background-cream);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin: 40px 0;
}

.fun-facts-inline h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.fun-facts-inline ol {
    margin-bottom: 0;
}

.post-footer {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-dark);
}

.post-tags a {
    background-color: rgba(90, 141, 90, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(90, 141, 90, 0.1);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.post-share a svg {
    width: 18px;
    height: 18px;
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

.related-card h4 {
    padding: 15px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.related-card a {
    color: var(--text-dark);
}

.related-card a:hover {
    color: var(--primary-color);
}

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

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.column-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.column-text h2 {
    margin-bottom: 25px;
}

.column-text p {
    color: var(--text-medium);
}

.about-mission {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-value-item {
    padding: 30px;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.mission-value-item .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(90, 141, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-value-item .icon svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.mission-value-item h3 {
    margin-bottom: 15px;
}

.mission-value-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

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

.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.25rem;
}

.team-card p {
    color: var(--text-medium);
    margin: 0 20px 15px;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
}

.team-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(90, 141, 90, 0.1);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.team-card .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background-color: var(--background-cream);
}

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

.certification-item {
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

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

.certification-item h3 {
    margin: 20px 20px 10px;
    font-size: 1.25rem;
}

.certification-item p {
    color: var(--text-medium);
    margin: 0 20px 20px;
}

/* Services Page Styles */
.services-intro {
    padding: 80px 0;
    background-color: var(--background-white);
}

.services-list {
    padding: 40px 0 80px;
    background-color: var(--background-light);
}

.service-item {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    margin-bottom: 80px;
}

.service-item.reverse {
    grid-template-columns: 60% 40%;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.service-content h2 {
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-content h3 {
    margin: 30px 0 20px;
    color: var(--primary-dark);
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.plan {
    padding: 25px;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

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

.plan.featured {
    background-color: var(--primary-light);
    color: white;
    transform: scale(1.05);
}

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

.plan.featured h4, .plan.featured p {
    color: white;
}

.plan-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan h4 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.plan p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.plan ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.plan.featured ul li:before {
    color: white;
}

.plan button {
    width: 100%;
}

.recipe-list {
    margin-bottom: 20px;
}

.recipe-item {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.recipe-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.recipe-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.recipe-item p {
    margin-bottom: 10px;
}

.recipe-time {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.meal-kit-pricing {
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
    font-size: 1.1rem;
}

.corporate-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.corporate-option {
    padding: 25px;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.corporate-option .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(90, 141, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.corporate-option .icon svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.corporate-option h4 {
    margin-bottom: 10px;
}

.corporate-option p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.specialty-item {
    padding: 20px;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.specialty-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.specialty-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.specialty-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--background-cream);
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-white);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-item:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
}

.testimonial-content:before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    opacity: 0.5;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--transition-normal);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary-color);
}

/* FAQ Accordion */
.faq {
    padding: 80px 0;
    background-color: var(--background-light);
}

.accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-toggle {
    width: 100%;
    background-color: var(--background-white);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.accordion-toggle:hover {
    background-color: rgba(90, 141, 90, 0.1);
}

.accordion-toggle.active {
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    background-color: var(--primary-color);
    color: white;
}

.accordion-icon {
    transition: var(--transition-normal);
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: var(--background-white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.accordion-content p {
    padding: 20px 0;
    margin-bottom: 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(90, 141, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.info-content p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-light);
}

.social-connect h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form-container {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input, 
.contact-form textarea, 
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: var(--font-family-base);
    transition: var(--transition-fast);
}

.contact-form input:focus, 
.contact-form textarea:focus, 
.contact-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 141, 90, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.contact-form button {
    width: 100%;
    padding: 15px;
}

/* Map Section */
.map-section {
    padding: 40px 0 80px;
    background-color: var(--background-light);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--background-white);
    margin: 15% auto;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(90, 141, 90, 0.1);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal h2 {
    margin-bottom: 15px;
    color: var(--success-color);
}

.modal p {
    margin-bottom: 25px;
    color: var(--text-medium);
}

.modal button {
    min-width: 150px;
}

/* Cookie Notice */
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

#cookie-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

#cookie-accept:hover {
    background-color: var(--primary-dark);
}

#cookie-settings, #cookie-decline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
}

#cookie-settings:hover, #cookie-decline:hover {
    background-color: var(--background-light);
}

.cookie-more-info {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--background-cream);
    padding: 80px 0 20px;
}

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

.footer-column h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-column p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.reg-info {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

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

.footer-column ul li a {
    color: var(--text-medium);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column address {
    font-style: normal;
    color: var(--text-medium);
}

.footer-column address p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-column address p svg {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.legal-links a {
    color: var(--text-light);
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-item, 
    .service-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps:before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    
    .step-content {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
