/* ===== CSS RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* ===== COLOR SCHEME (NO BLUE, NO PINK) ===== */
:root {
    --primary-color: #2a5a3d;      /* Forest Green */
    --secondary-color: #8B4513;    /* Saddle Brown */
    --accent-color: #FF6B35;       /* Orange Red */
    --dark-color: #1a1a1a;         /* Almost Black */
    --light-color: #f8f9fa;        /* Light Gray */
    --gray-color: #6c757d;         /* Medium Gray */
    --white-color: #ffffff;        /* Pure White */
    --success-color: #28a745;      /* Green */
    --warning-color: #ffc107;      /* Amber */
    --danger-color: #dc3545;       /* Red */
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #2a5a3d, #3d7a56);
    --accent-gradient: linear-gradient(135deg, #FF6B35, #ff8c5a);
    --dark-gradient: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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: var(--gray-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #32a852, #4dcc6f);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(50, 168, 82, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #28a745, #3fc463);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(50, 168, 82, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff8c42, #ffa666);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff7729, #ff9952);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.5);
}

.btn-outline {
    background: transparent;
    color: #32a852;
    border: 2px solid #32a852;
    box-shadow: 0 2px 8px rgba(50, 168, 82, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #32a852, #4dcc6f);
    color: var(--white-color);
    border-color: #32a852;
    box-shadow: 0 6px 16px rgba(50, 168, 82, 0.4);
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-gradient);
}

.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;
    color: var(--white-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

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

.section-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

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

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

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white-color);
}

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

.service-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

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

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

.service-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.service-card li i {
    color: var(--success-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light-color);
}

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

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

.stat {
    text-align: center;
}

.stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.about-features {
    display: grid;
    gap: 2rem;
}

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

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

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

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--white-color);
}

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

.review-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

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

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--light-color);
}

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

.process-step {
    text-align: center;
    position: relative;
}

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

.process-step i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

/* ===== BLOG SECTIONS ===== */
.blog-preview {
    background: var(--white-color);
}

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

.blog-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

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

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

.read-more {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-cta {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light-color);
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

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

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #32a852, #4dcc6f);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(50, 168, 82, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa666);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

/* ===== FORM STYLES ===== */
.contact-form {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray-color);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    background: var(--white-color);
    padding: 0 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content i {
    font-size: 2rem;
    color: var(--warning-color);
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--white-color);
}

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

/* ===== PAGE HEADERS ===== */
.page-header {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BLOG PAGES ===== */
.blog-content {
    padding: 80px 0;
    background: var(--white-color);
}

.blog-articles {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.article-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

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

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-color);
    font-size: 0.9rem;
}

.newsletter-signup {
    background: var(--primary-gradient);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white-color);
}

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

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

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

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

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

/* ===== ARTICLE PAGES ===== */
.article-header {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 120px 0 60px;
}

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

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

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

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.article-header h1 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.article-content .container {
    display: block;
    max-width: 800px;
}

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

.article-intro {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.article-intro i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.7;
}

.article-body h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-body h2 i {
    font-size: 1.5rem;
}

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

.highlight-box i,
.tip-box i,
.action-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

blockquote {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

blockquote i {
    font-size: 2rem;
    color: var(--accent-color);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

blockquote p {
    margin-left: 3rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* Article specific components */
.strategy-grid,
.pillars-grid,
.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.strategy-item,
.pillar,
.persona {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.strategy-item i,
.pillar i,
.persona i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.roadmap {
    margin: 2rem 0;
}

.roadmap-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
}

.step-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

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

.metric-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.metric-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Article sidebar */
.article-sidebar {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

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

.related-articles {
    display: grid;
    gap: 1rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white-color);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.related-article:hover {
    background: #f0f0f0;
}

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

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn:nth-child(2) { background: #3b5998; }
.share-btn:nth-child(3) { background: #1da1f2; }
.share-btn:nth-child(4) { background: #0077b5; }
.share-btn:nth-child(5) { background: #026466; }

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.author-info i {
    font-size: 3rem;
    color: var(--primary-color);
}

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

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 60px 0;
    background: var(--white-color);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 3rem;
    border-radius: 12px;
}

.legal-intro {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

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

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

.legal-section h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-info {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.storage-table {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

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

.table-cell {
    padding: 1rem;
}

.table-row:nth-child(even) {
    background: var(--light-color);
}

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

.right-item {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

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

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

.authority-info {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Cookie-specific styles */
.cookie-settings-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.cookie-categories {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-category {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.required-badge {
    background: var(--danger-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.optional-badge {
    background: var(--gray-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-examples {
    margin: 1.5rem 0;
}

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

.cookie-details {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

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

.management-option {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.management-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.browser-settings {
    margin: 2rem 0;
}

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

.browser-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white-color);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.browser-link:hover {
    background: var(--light-color);
}

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

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
    padding: 120px 0 80px;
    background: var(--white-color);
    min-height: 80vh;
}

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

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.submission-details {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
    border-left: 4px solid var(--success-color);
}

.submission-details h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-summary,
.newsletter-benefits,
.download-info,
.audit-process {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.newsletter-benefits ul,
.download-info ol,
.audit-process ol {
    margin-top: 1rem;
}

.newsletter-benefits li,
.audit-process li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-benefits i,
.audit-process i {
    color: var(--success-color);
}

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

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.step {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

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

.contact-emergency {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

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

.emergency-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #32a852, #4dcc6f);
    color: var(--white-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(50, 168, 82, 0.3);
}

.contact-method:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa666);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

.while-you-wait {
    margin-bottom: 3rem;
}

.while-you-wait h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.resource-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    color: inherit;
}

.resource-card:hover {
    transform: translateY(-3px);
    background: var(--white-color);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

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

.social-follow {
    margin-bottom: 3rem;
}

.social-follow h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #32a852, #4dcc6f);
    color: var(--white-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(50, 168, 82, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa666);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px 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;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .page-header h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-grid,
    .reviews-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .blog-article {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .article-meta {
        justify-content: center;
        gap: 1rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .emergency-contact {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links-large {
        flex-wrap: wrap;
    }

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

    .legal-document {
        margin: 0 20px;
        padding: 2rem;
    }

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

    .browser-links {
        grid-template-columns: 1fr;
    }
}

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .service-card,
    .review-card,
    .blog-card {
        padding: 1.5rem;
    }

    .legal-document {
        padding: 1.5rem;
        margin: 0 10px;
    }

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

    .thank-you-icon {
        font-size: 4rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-settings-button,
    .social-share,
    .action-buttons {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

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

    .page-header {
        background: none;
        color: black;
        padding: 2rem 0;
    }
}

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

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --accent-color: #000000;
        --gray-color: #000000;
        --light-color: #ffffff;
    }
}

