/* Retrolighe - Italian Landscape Design Company */
/* Custom CSS with unique styling, no gray text on colored backgrounds */

/* Reset and Base Styles */
/* Updated: Fixed icon colors + redesigned pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a2614;
}

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

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

a {
    color: #6b8e4a;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(107, 142, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8db86a, #a5d17a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 74, 0.4);
    color: #ffffff;
    text-decoration: none;
}

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

.btn-outline:hover {
    background: #6b8e4a;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background: #d4a574;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #c19660;
    color: #ffffff;
    text-decoration: none;
}

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

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

/* Navigation */
.navbar {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b8e4a;
}

.nav-brand a {
    color: #6b8e4a;
    text-decoration: none;
}

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    background: #6b8e4a;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-toggle i {
    font-size: 1.5rem;
    color: #6b8e4a;
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

.hero-modern .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-modern .hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 142, 74, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(107, 142, 74, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b8e4a;
}

.hero-content-modern h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: #1a2614;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content-modern .highlight {
    color: #6b8e4a;
    position: relative;
}

.hero-content-modern p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e1f;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-item strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #6b8e4a;
    line-height: 1;
}

.stat-item span {
    font-size: 0.9rem;
    color: #2c3e1f;
    font-weight: 500;
}

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

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

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

.section-mini-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2614;
}

.section-line {
    width: 50px;
    height: 3px;
    background: #6b8e4a;
    margin-bottom: 1.5rem;
}

/* Modern Services - Redesigned */
.services-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    position: relative;
}

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

.service-card-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 142, 74, 0.15);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 74, 0.2);
    border-color: #6b8e4a;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    float: left;
    margin-right: 1rem;
}

.service-icon i {
    font-size: 1.3rem;
    color: #1a2614;
}

.service-content {
    flex: 1;
}

.service-content::after {
    content: "";
    display: table;
    clear: both;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2614;
}

.service-content p {
    color: #2c3e1f;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #6b8e4a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #8db86a;
    text-decoration: none;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Modern Portfolio */
.portfolio-preview {
    padding: 80px 0;
    background: #f9faf7;
}

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

.portfolio-card-modern {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 74, 0.12);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574, #e8c596);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.portfolio-icon i {
    font-size: 1.5rem;
    color: #1a2614;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a2614;
}

.portfolio-type {
    display: inline-block;
    background: rgba(107, 142, 74, 0.1);
    color: #6b8e4a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-info p {
    color: #2c3e1f;
    font-size: 0.9rem;
    margin: 0;
}

/* About & Process */
.about-process {
    padding: 80px 0;
    background: #ffffff;
}

.about-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.process-steps-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a2614;
}

.step-content p {
    color: #2c3e1f;
    font-size: 0.9rem;
    margin: 0;
}

/* Blog & Contact */
.blog-contact {
    padding: 80px 0;
    background: #f9faf7;
}

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

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-date {
    width: 60px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b8e4a;
    flex-shrink: 0;
}

.blog-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a2614;
}

.blog-content p {
    font-size: 0.9rem;
    color: #2c3e1f;
    margin-bottom: 0.5rem;
}

.blog-link {
    color: #6b8e4a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: #8db86a;
    text-decoration: none;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 0.9rem;
    color: #1a2614;
    margin-bottom: 0.2rem;
}

.contact-item span {
    font-size: 0.9rem;
    color: #2c3e1f;
}

/* Modern Buttons */
.btn-modern {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #8db86a, #a5d17a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 74, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.text-link {
    color: #6b8e4a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #8db86a;
    text-decoration: none;
}

.text-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Modern Portfolio Styles */
.portfolio-header-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    text-align: center;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 142, 74, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(107, 142, 74, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b8e4a;
}

.portfolio-header-modern h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2614;
    line-height: 1.1;
    font-weight: 800;
}

.portfolio-header-modern .highlight {
    color: #6b8e4a;
}

.portfolio-header-modern p {
    font-size: 1.1rem;
    color: #2c3e1f;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-modern strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #6b8e4a;
    line-height: 1;
}

.stat-modern span {
    font-size: 0.9rem;
    color: #2c3e1f;
    font-weight: 500;
}

.filter-section-modern {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f9faf7;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    color: #2c3e1f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    border-color: #6b8e4a;
}

.filter-tab i {
    font-size: 1rem;
}

.projects-gallery-modern {
    padding: 80px 0;
    background: #f9faf7;
}

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

.project-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 142, 74, 0.1);
}

.project-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 142, 74, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2614;
    font-size: 1.2rem;
}

.project-meta {
    text-align: right;
}

.project-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2614;
}

.project-type {
    font-size: 0.8rem;
    color: #6b8e4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a2614;
}

.project-content p {
    color: #2c3e1f;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-specs span {
    font-size: 0.8rem;
    color: #6b8e4a;
    font-weight: 600;
}

.project-specs i {
    margin-right: 4px;
}

.project-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags-modern span {
    background: rgba(107, 142, 74, 0.1);
    color: #6b8e4a;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modern Blog Styles */
.blog-header-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    text-align: center;
}

.blog-intro {
    max-width: 600px;
    margin: 0 auto;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 142, 74, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(107, 142, 74, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b8e4a;
}

.blog-header-modern h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2614;
    line-height: 1.1;
    font-weight: 800;
}

.blog-header-modern .highlight {
    color: #6b8e4a;
}

.blog-header-modern p {
    font-size: 1.1rem;
    color: #2c3e1f;
}

.articles-gallery-modern {
    padding: 80px 0;
    background: #f9faf7;
}

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

.article-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 142, 74, 0.1);
    position: relative;
}

.article-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 142, 74, 0.15);
}

.article-card-modern.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6b8e4a;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2614;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-category {
    background: #1a2614;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    font-size: 0.8rem;
    color: #2c3e1f;
    font-weight: 600;
}

.article-card-modern h2,
.article-card-modern h3 {
    margin-bottom: 1rem;
    color: #1a2614;
}

.article-card-modern.featured h2 {
    font-size: 1.8rem;
}

.article-card-modern h3 {
    font-size: 1.3rem;
}

.article-card-modern p {
    color: #2c3e1f;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #2c3e1f;
}

.article-author i {
    color: #6b8e4a;
}

.read-time {
    margin-left: auto;
    font-weight: 600;
}

.article-link {
    color: #6b8e4a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #8db86a;
    text-decoration: none;
}

.article-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.article-link:hover i {
    transform: translateX(5px);
}

/* Legacy Hero (for compatibility) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2614;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2c3e1f;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

section:nth-child(even) {
    background: #f9faf7;
}

/* Services Overview */
.services-overview {
    background: #ffffff;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2614;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(107, 142, 74, 0.2);
    border-color: #8db86a;
}

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

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

.service-card p {
    color: #2c3e1f;
}

/* About Brief */
.about-brief {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b8e4a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #2c3e1f;
    font-weight: 500;
}

/* Portfolio Highlight */
.portfolio-highlight {
    background: #ffffff;
}

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

.portfolio-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f9faf7, #f4f7f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 142, 74, 0.15);
}

.portfolio-item i {
    color: #6b8e4a;
    margin-bottom: 1rem;
}

.portfolio-item h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.portfolio-item p {
    color: #2c3e1f;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial p {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #ffffff;
    font-weight: 600;
    opacity: 0.9;
}

/* Process Section */
.process {
    background: #ffffff;
}

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

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.step p {
    color: #2c3e1f;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #d4a574, #e8c596);
    color: #ffffff;
}

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

.newsletter h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

/* Blog Preview */
.blog-preview {
    background: #f9faf7;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 142, 74, 0.15);
}

.blog-card i {
    display: block;
    text-align: center;
    padding: 2rem;
    color: #6b8e4a;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

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

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

.blog-card .read-more {
    display: block;
    padding: 1rem 2rem;
    color: #6b8e4a;
    font-weight: 600;
    background: #f9faf7;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-card .read-more:hover {
    background: #6b8e4a;
    color: #ffffff;
    text-decoration: none;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1a2614, #2c3e1f);
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #1a2614;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #8db86a;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8db86a;
    opacity: 1;
    text-decoration: none;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #8db86a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8db86a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.legal-links a:hover,
.legal-links a.active {
    color: #8db86a;
    opacity: 1;
    text-decoration: none;
}

.footer-bottom p {
    color: #ffffff;
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 38, 20, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 20px;
    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 {
    flex: 1;
    margin: 0;
    color: #ffffff;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #ffffff;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #1a2614;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-body {
    padding: 2rem;
}

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    margin: 0;
    color: #1a2614;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6b8e4a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 2fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-icon {
    order: 1;
}

.service-text h2 {
    color: #1a2614;
    margin-bottom: 1.5rem;
}

.service-text h3 {
    color: #6b8e4a;
    margin: 2rem 0 1rem;
}

.service-text ul {
    list-style: none;
    margin: 1rem 0;
}

.service-text ul li {
    padding: 0.5rem 0;
    color: #2c3e1f;
}

.service-text ul li i {
    color: #6b8e4a;
    margin-right: 0.5rem;
}

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

.service-icon i {
    color: #305e05;
    opacity: 8.0;
}

/* Pricing */
.pricing {
    background: #f9faf7;
}

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

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

.pricing-card.featured {
    border-color: #6b8e4a;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 142, 74, 0.15);
}

.pricing-card h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b8e4a;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: #2c3e1f;
    border-bottom: 1px solid #f0f0f0;
}

/* Process Timeline */
.process-detailed {
    background: #ffffff;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6b8e4a, #8db86a);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #2c3e1f;
}

/* Team */
.our-team {
    background: #f9faf7;
}

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

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 142, 74, 0.15);
}

.member-avatar {
    margin-bottom: 1rem;
}

.member-avatar i {
    color: #6b8e4a;
}

.team-member h3 {
    color: #1a2614;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6b8e4a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #2c3e1f;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f9faf7;
    color: #6b8e4a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #6b8e4a;
    color: #1a2614;
}

/* Values */
.our-values {
    background: #ffffff;
}

.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;
    background: linear-gradient(135deg, #f9faf7, #f4f7f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 142, 74, 0.15);
}

.value-card i {
    color: #6b8e4a;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.value-card p {
    color: #2c3e1f;
}

/* Portfolio Filter */
.portfolio-filter {
    background: #f9faf7;
    padding: 2rem 0;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #6b8e4a;
    background: transparent;
    color: #6b8e4a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #6b8e4a;
    color: #ffffff;
}

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

.project-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 142, 74, 0.15);
}

.project-image {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    padding: 3rem;
    text-align: center;
}

.project-image i {
    color: #6b8e4a;
}

.project-info {
    padding: 2rem;
}

.project-category {
    color: #6b8e4a;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.project-info p {
    color: #2c3e1f;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-details span {
    font-size: 0.9rem;
    color: #666;
    background: #f9faf7;
    padding: 4px 8px;
    border-radius: 4px;
}

.project-details i {
    margin-right: 4px;
    color: #6b8e4a;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.8rem;
    background: #e8f0dc;
    color: #6b8e4a;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Stats Grid */
.project-stats {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a2614;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #1a2614;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: #1a2614;
    opacity: 0.7;
}

/* Clean Blog Styles */
.blog-articles-clean {
    padding: 80px 0;
    background: #ffffff;
}

.articles-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card-modern.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    border: 2px solid #6b8e4a;
}

.article-card-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 142, 74, 0.1);
    position: relative;
}

.article-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 74, 0.15);
    border-color: #6b8e4a;
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6b8e4a;
    color: #1a2614;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-card-modern .article-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    float: left;
    margin-right: 1rem;
}

.article-card-modern .article-icon i {
    font-size: 1.2rem;
    color: #1a2614;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    clear: both;
}

.article-category {
    background: #1a2614;
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}

.article-date {
    color: #666;
    font-weight: 500;
}

.article-card-modern h2,
.article-card-modern h3 {
    color: #1a2614;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-card-modern h2 {
    font-size: 1.5rem;
}

.article-card-modern h3 {
    font-size: 1.2rem;
}

.article-card-modern p {
    color: #2c3e1f;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.article-author i {
    color: #6b8e4a;
}

.read-time {
    margin-left: auto;
    font-weight: 500;
}

.article-link {
    color: #6b8e4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #8db86a;
    transform: translateX(5px);
}

.article-link i {
    transition: transform 0.3s ease;
}

.article-link:hover i {
    transform: translateX(3px);
}

/* Chi Siamo - Modern Design */
.about-grid-modern {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-card {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(107, 142, 74, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 74, 0.15);
    border-color: #6b8e4a;
}

.about-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-card .card-icon i {
    font-size: 1.5rem;
    color: #1a2614;
}

.about-card h3 {
    color: #1a2614;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card p {
    color: #2c3e1f;
    line-height: 1.6;
}

.team-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
}

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

.team-member {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(107, 142, 74, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 74, 0.15);
    border-color: #6b8e4a;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2rem;
    color: #1a2614;
}

.team-member h4 {
    color: #1a2614;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-member span {
    color: #6b8e4a;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.team-member p {
    color: #2c3e1f;
    line-height: 1.6;
    font-size: 0.9rem;
}

.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
}

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

.stats-overview .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stats-overview .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stats-overview .stat-icon i {
    font-size: 1.5rem;
    color: #1a2614;
}

.stats-overview strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2614;
    margin-bottom: 0.5rem;
}

.stats-overview span {
    color: #1a2614;
    font-weight: 500;
    opacity: 0.8;
}

/* Blog Styles */
.blog-articles {
    background: #ffffff;
}

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

.featured-article {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    margin-bottom: 4rem;
}

.featured-post {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: 15px;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.featured-meta span {
    font-size: 0.9rem;
    color: #6b8e4a;
    font-weight: 500;
}

.featured-meta i {
    margin-right: 0.5rem;
}

.featured-post h2 {
    color: #1a2614;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.featured-post p {
    color: #2c3e1f;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.featured-image i {
    color: #6b8e4a;
    opacity: 0.5;
}

.blog-image {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta .category {
    background: #6b8e4a;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.blog-meta .date {
    color: #666;
}

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

.blog-content h3 a {
    color: #1a2614;
    text-decoration: none;
}

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

.blog-footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-footer i {
    margin-right: 0.5rem;
    color: #6b8e4a;
}

/* Contact Form */
.contact-form-section {
    background: #f9faf7;
}

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2614;
    font-weight: 600;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #6b8e4a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f9faf7, #f4f7f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 142, 74, 0.15);
}

.contact-card i {
    color: #6b8e4a;
    margin-bottom: 1rem;
}

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

.contact-card p {
    color: #2c3e1f;
    margin-bottom: 1.5rem;
}

/* FAQ */
.contact-faq {
    background: #f9faf7;
}

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

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

.faq-item h3 {
    color: #1a2614;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: #6b8e4a;
}

.faq-item p {
    color: #2c3e1f;
}

/* Thank You Page */
.thank-you-section {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    padding: 120px 0 80px;
    text-align: center;
}

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

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

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

.thank-you-content h1 {
    color: #1a2614;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    color: #6b8e4a;
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #2c3e1f;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    color: #1a2614;
    margin-bottom: 2rem;
}

.steps-timeline {
    display: grid;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9faf7;
    border-radius: 10px;
}

.timeline-step .step-number {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #1a2614;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a2614;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #2c3e1f;
    margin-bottom: 0.5rem;
}

.step-time {
    font-size: 0.9rem;
    color: #6b8e4a;
    font-weight: 600;
}

.contact-reminder {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.contact-reminder h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #2c3e1f;
    margin-bottom: 1.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* While You Wait */
.while-you-wait {
    background: #ffffff;
}

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

.wait-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f9faf7, #f4f7f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.wait-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 142, 74, 0.15);
}

.wait-card i {
    color: #6b8e4a;
    margin-bottom: 1rem;
}

.wait-card h3 {
    color: #1a2614;
    margin-bottom: 1rem;
}

.wait-card p {
    color: #2c3e1f;
    margin-bottom: 1.5rem;
}

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

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

.legal-intro {
    background: #f9faf7;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.legal-intro p {
    margin-bottom: 1rem;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.legal-section h2 {
    color: #1a2614;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2 i {
    color: #6b8e4a;
}

.legal-section h3 {
    color: #6b8e4a;
    margin: 2rem 0 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 0.5rem;
    color: #2c3e1f;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

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

.contact-list i {
    color: #6b8e4a;
    width: 20px;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #6b8e4a;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #2c3e1f;
}

.cookie-preferences {
    margin: 2rem 0;
    text-align: center;
}

/* Article Styles */
.blog-article {
    background: #ffffff;
}

.article-header {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    padding: 120px 0 60px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.article-meta span {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta .category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

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

.article-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.article-main {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    text-align: center;
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.article-image i {
    color: #6b8e4a;
    opacity: 0.6;
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.article-main .lead {
    font-size: 1.2rem;
    color: #2c3e1f;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9faf7;
    border-left: 4px solid #6b8e4a;
    border-radius: 0 8px 8px 0;
}

.article-main h2 {
    color: #1a2614;
    margin: 3rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-main h2 i {
    color: #6b8e4a;
}

.article-main h3 {
    color: #6b8e4a;
    margin: 2rem 0 1rem;
}

.article-main ul,
.article-main ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-main ul li,
.article-main ol li {
    margin-bottom: 0.5rem;
    color: #2c3e1f;
}

.article-main blockquote {
    background: linear-gradient(135deg, #f4f7f0, #e8f0dc);
    border-left: 4px solid #6b8e4a;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
}

.article-main blockquote p {
    color: #2c3e1f;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-main blockquote cite {
    color: #6b8e4a;
    font-weight: 600;
    font-style: normal;
}

.article-tip,
.article-warning {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.article-tip {
    background: #e8f4f8;
    border-left: 4px solid #17a2b8;
}

.article-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.article-tip h4,
.article-warning h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-tip h4 i {
    color: #17a2b8;
}

.article-warning h4 i {
    color: #ffc107;
}

.article-cta {
    background: linear-gradient(135deg, #6b8e4a, #8db86a);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

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

.article-cta p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #1a2614;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget h3 i {
    color: #6b8e4a;
}

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

.author-avatar i {
    color: #6b8e4a;
}

.author-details h4 {
    color: #1a2614;
    margin-bottom: 0.5rem;
}

.author-details p {
    color: #2c3e1f;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f9faf7;
    color: #6b8e4a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #6b8e4a;
    color: #1a2614;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
    color: #1a2614;
}

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

.share-btn.linkedin {
    background: #0077b5;
    color: #1a2614;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #1a2614;
}

.share-btn:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

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

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9faf7;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: #6b8e4a;
    color: #ffffff;
    text-decoration: none;
}

.related-article i {
    color: #6b8e4a;
    transition: color 0.3s ease;
}

.related-article:hover i {
    color: #ffffff;
}

.related-article span {
    color: #2c3e1f;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-article:hover span {
    color: #ffffff;
}

/* Newsletter Article */
.newsletter-article {
    background: linear-gradient(135deg, #d4a574, #e8c596);
    color: #ffffff;
    padding: 60px 0;
}

.newsletter-article h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-article p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-post h2 {
        font-size: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse .service-text,
    .service-detail.reverse .service-icon {
        order: 0;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .article-main {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card,
    .portfolio-item,
    .team-member,
    .value-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .legal-document {
        padding: 2rem;
    }
    
    .article-main {
        padding: 1.5rem;
    }
    
    .featured-post {
        padding: 2rem;
    }
    
    .next-steps {
        padding: 2rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Services Cards Layout */
.services-cards {
    padding: 80px 0;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: #1a2614;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-intro p {
    color: #2c3e1f;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    background: #f9faf7;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card-large:hover {
    transform: translateY(-10px);
    border-color: #6b8e4a;
    box-shadow: 0 20px 40px rgba(107, 142, 74, 0.2);
}

.service-card-icon {
    width: 90px;
    height: 90px;
    background: #6b8e4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card-large h3 {
    color: #1a2614;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card-large p {
    color: #2c3e1f;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-link {
    color: #6b8e4a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #1a2614;
    transform: translateX(5px);
}

.card-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-icon {
        float: none;
        margin: 0 auto 1rem;
    }
    
    .service-card-modern {
        text-align: center;
    }
    
    .articles-grid-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .article-card-modern.featured {
        grid-column: 1;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-large {
        padding: 2.5rem 2rem;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-card-icon i {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .back-to-top,
    .social-links,
    .newsletter-form,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000000 !important;
        background: #ffffff !important;
    }
    
    .hero,
    .page-header {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .hero-content h1,
    .page-header h1 {
        color: #000000 !important;
    }
    
    section {
        break-inside: avoid;
        padding: 20px 0;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000000;
        color: #ffffff;
        border: 2px solid #ffffff;
    }
    
    .btn-outline {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .service-card,
    .portfolio-item,
    .team-member {
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-bg,
    .service-card:hover,
    .portfolio-item:hover {
        transform: none !important;
    }
}
