/* Reset and 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: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1a3319;
}

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

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

.btn-primary:hover {
    background-color: #1a3319;
    color: white;
}

.btn-secondary {
    background-color: #8B4513;
    color: white;
}

.btn-secondary:hover {
    background-color: #6B3410;
    color: white;
}

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

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

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

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: #2c5530;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5530;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255,255,255,0.02) 100px
        );
    background-size: 50px 50px, 30px 30px, 200px 200px, 100px 100px;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}
}

.banner-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    font-size: 3rem;
    color: #2c5530;
    display: block;
    margin-bottom: 1rem;
}

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

/* Company Info Section */
.company-info {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

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

.info-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

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

/* Services Section */
.services-section {
    padding: 5rem 0;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

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

/* Featured Products */
.featured-products {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

.product-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
}

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

.review-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    margin-right: 3px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card cite {
    font-weight: 600;
    color: #2c5530;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 300px;
}

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

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Contact Info */
.contact-info {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5530;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #8B4513;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.page-header i {
    margin-right: 1rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

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

.content-grid.reverse {
    grid-template-columns: 200px 1fr;
}

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

.content-icon i {
    font-size: 8rem;
    color: #2c5530;
    opacity: 0.3;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

.team-member i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.team-member .title {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
}

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

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    border-radius: 10px;
}

.achievement-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-header i {
    font-size: 2.5rem;
}

.service-content {
    padding: 2rem;
}

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

.feature {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature i {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Educational Services */
.educational-services {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.education-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.education-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.education-card ul {
    margin-top: 1rem;
}

.education-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Specialized Services */
.specialized-services {
    padding: 5rem 0;
}

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

.specialized-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.specialized-card:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
}

.specialized-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.shipping-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.shipping-item i {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.provinces-list {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

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

.provinces-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.provinces-list i {
    color: #2c5530;
}

/* Blog Styles */
.blog-section {
    padding: 5rem 0;
}

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

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

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

.blog-header {
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-header i {
    font-size: 1.5rem;
}

.blog-category {
    background-color: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-card h2 {
    padding: 1.5rem 2rem 0;
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #2c5530;
}

.blog-meta {
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

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

.blog-card p {
    padding: 0 2rem;
    color: #666;
    margin-bottom: 1rem;
}

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

.tag {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-more {
    display: inline-block;
    padding: 1rem 2rem;
    color: #2c5530;
    font-weight: 600;
    border-top: 1px solid #e9ecef;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #f8f9fa;
    color: #2c5530;
}

/* Blog Categories */
.blog-categories {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.category-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
}

.category-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Blog Newsletter */
.blog-newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
}

/* Contact Styles */
.contact-info-detailed {
    padding: 5rem 0;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #2c5530;
}

.contact-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #2c5530;
    font-weight: 600;
}

.call-hours,
.hours-list {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-header i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

/* Additional Contact Methods */
.additional-contact {
    padding: 5rem 0;
}

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

.method-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
}

.method-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 6rem;
    color: #28a745;
}

.thank-you-section h1 {
    font-size: 3.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.detail-item i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

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

/* What's Next Section */
.whats-next-section {
    padding: 5rem 0;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.step-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.resource-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.resource-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.resource-link {
    color: #2c5530;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mini-newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mini-newsletter input {
    flex: 1;
    padding: 8px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Social Section */
.social-section {
    padding: 5rem 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link i {
    font-size: 1.5rem;
}

/* Legal Pages */
.legal-content {
    padding: 5rem 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

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

.legal-section h2 {
    color: #2c5530;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h3 {
    color: #8B4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.contact-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
    margin: 2rem 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    font-weight: 600;
    color: #2c5530;
}

/* Cookie Settings Button */
.cookie-settings-button {
    margin: 2rem 0;
    text-align: center;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    padding: 4rem 0;
}

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

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

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

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

.article-meta h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.article-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

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

.article-content {
    padding: 5rem 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.article-body {
    max-width: none;
}

.article-intro {
    font-size: 1.1rem;
    color: #666;
    border-left: 4px solid #2c5530;
    padding-left: 2rem;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
}

.article-intro i {
    position: absolute;
    left: -2.5rem;
    top: 0;
    font-size: 2rem;
    color: #2c5530;
}

.article-section {
    margin-bottom: 4rem;
}

.article-section h2 {
    color: #2c5530;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-section h3 {
    color: #8B4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #2c5530;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 5px;
    position: relative;
}

blockquote i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: #2c5530;
}

blockquote p {
    margin-bottom: 1rem;
    font-style: italic;
    padding-left: 2rem;
}

blockquote cite {
    font-weight: 600;
    color: #2c5530;
    padding-left: 2rem;
}

/* Article Components */
.highlight-box,
.technique-spotlight,
.technique-box,
.diy-recipe,
.zero-waste-tip,
.maintenance-schedule,
.supplier-questions,
.community-sharing,
.progress-tracking,
.support-highlight,
.call-to-action {
    background-color: #f8f9fa;
    border-left: 4px solid #2c5530;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.highlight-box i,
.technique-spotlight i,
.technique-box i,
.diy-recipe i,
.zero-waste-tip i,
.maintenance-schedule i,
.supplier-questions i,
.community-sharing i,
.progress-tracking i,
.support-highlight i,
.call-to-action i {
    color: #2c5530;
    margin-right: 0.5rem;
}

.benefits-grid,
.approach-grid,
.activities-list,
.trends-grid,
.materials-showcase,
.pillars-grid,
.yarn-guide,
.metal-options,
.tool-principles,
.shopping-strategies,
.zero-waste-principles,
.upcycling-categories,
.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card,
.approach-item,
.activity-item,
.trend-item,
.material-item,
.pillar-item,
.yarn-category,
.metal-option,
.principle,
.strategy,
.principle-item,
.upcycling-category,
.characteristic-item {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover,
.approach-item:hover,
.activity-item:hover,
.trend-item:hover,
.material-item:hover,
.pillar-item:hover,
.yarn-category:hover,
.metal-option:hover,
.principle:hover,
.strategy:hover,
.principle-item:hover,
.upcycling-category:hover,
.characteristic-item:hover {
    border-color: #2c5530;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.1);
}

.benefit-card i,
.approach-item i,
.activity-item i,
.trend-item i,
.material-item i,
.pillar-item i,
.yarn-category i,
.metal-option i,
.principle i,
.strategy i,
.principle-item i,
.upcycling-category i,
.characteristic-item i {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.pros-cons {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.pros {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.cons {
    color: #6c757d;
}

/* Color Swatches */
.natural-dyes,
.color-trends {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dye-color,
.color-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.red-dye { background: linear-gradient(45deg, #dc3545, #bd2130); }
.yellow-dye { background: linear-gradient(45deg, #ffc107, #e0a800); }
.blue-dye { background: linear-gradient(45deg, #007bff, #0056b3); }
.green-dye { background: linear-gradient(45deg, #28a745, #1e7e34); }
.vibrant-coral { background: linear-gradient(45deg, #ff6b6b, #ff5252); }
.electric-blue { background: linear-gradient(45deg, #4ecdc4, #26c6da); }
.sage-green { background: linear-gradient(45deg, #81c784, #66bb6a); }
.sunset-orange { background: linear-gradient(45deg, #ff9800, #f57c00); }

/* Article Tags and Sharing */
.article-tags {
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.article-tags h4 {
    margin-bottom: 1rem;
    color: #333;
}

.article-tags .tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #666;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-share {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: #333;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.email {
    background-color: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* Sidebar Styles */
.article-sidebar {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.author-bio {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.author-bio i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.author-bio h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.related-articles,
.newsletter-signup,
.trend-watch,
.sustainability-tips,
.featured-artisans {
    margin-bottom: 2rem;
}

.related-articles h3,
.newsletter-signup h3,
.trend-watch h3,
.sustainability-tips h3,
.featured-artisans h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-list {
    list-style: none;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 5px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-item:hover {
    background-color: #2c5530;
    color: white;
}

.related-item i {
    color: #8B4513;
}

.related-item:hover i {
    color: white;
}

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

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

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

/* Trend Watch Styles */
.trend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trend-alert {
    padding: 1rem;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #8B4513;
}

.trend-alert i {
    color: #8B4513;
    margin-right: 0.5rem;
}

.trend-alert h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.trend-alert p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Sustainability Tips */
.tip-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: white;
    border-radius: 5px;
    font-size: 0.9rem;
}

.tip-item i {
    color: #28a745;
}

/* Featured Artisans */
.artisan-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artisan-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
}

.artisan-mini i {
    font-size: 2rem;
    color: #2c5530;
}

.artisan-mini strong {
    display: block;
    color: #2c5530;
    margin-bottom: 0.2rem;
}

.artisan-mini p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Artisan Profile Styles */
.artisan-profile {
    margin: 2rem 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.large-icon {
    font-size: 4rem !important;
    color: #2c5530;
}

.profile-info h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.location,
.specialty {
    color: #666;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Impact Stats */
.impact-stats,
.wellness-stats {
    background: linear-gradient(135deg, #2c5530 0%, #8B4513 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.impact-stats h4,
.wellness-stats h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impact-stats ul,
.wellness-stats ul {
    list-style: none;
    margin-left: 0;
}

.impact-stats li,
.wellness-stats li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.impact-stats li::before,
.wellness-stats li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept {
    background-color: #28a745;
    color: white;
}

.btn-necessary {
    background-color: #6c757d;
    color: white;
}

.btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 1rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

.cookie-category h4 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background-color: #2c5530;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active::before {
    transform: translateX(25px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .shipping-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-meta h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-info {
        justify-content: center;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .info-grid,
    .services-grid,
    .products-grid,
    .reviews-grid,
    .contact-grid,
    .categories-grid,
    .contact-methods,
    .next-steps,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefits-grid,
    .approach-grid,
    .trends-grid,
    .materials-showcase,
    .pillars-grid,
    .natural-dyes,
    .color-trends {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .article-sidebar,
    .footer {
        display: none;
    }
    
    .article-content {
        padding: 0;
    }
    
    .article-header {
        background: none;
        color: black;
        padding: 2rem 0;
    }
    
    .hero-banner {
        background: none;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .btn {
        border: 1px solid black;
        background: none;
        color: black;
    }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
    
    .hero-banner,
    .newsletter-section,
    .blog-newsletter {
        background: #000;
        color: #fff;
    }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #2c5530;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5530;
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}
