/* Crisp Vale - Minimalist Business Events Website Styles */
/* No blue or pink colors - Using elegant earth tones and modern colors */

:root {
    /* Color Palette - No blue or pink */
    --primary-color: #2c5530;        /* Deep forest green */
    --secondary-color: #8b4513;      /* Saddle brown */
    --accent-color: #ff6b35;         /* Vibrant orange */
    --tertiary-color: #4a5568;       /* Cool gray */
    
    --text-primary: #2d3748;         /* Dark gray */
    --text-secondary: #4a5568;       /* Medium gray */
    --text-light: #718096;           /* Light gray */
    
    --background-primary: #ffffff;   /* Pure white */
    --background-secondary: #f7fafc; /* Very light gray */
    --background-accent: #edf2f7;    /* Light gray */
    
    --border-color: #e2e8f0;         /* Light border */
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

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

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

/* Navigation */
.navbar {
    background: var(--background-primary);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-logo i {
    color: var(--accent-color);
}

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

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    margin-top: 80px;
}

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

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

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

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

/* Company Info Section */
.company-info {
    padding: 6rem 0;
    background: var(--background-secondary);
}

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

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

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

.info-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.service-card {
    padding: 2rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

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

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

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--background-accent);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
}

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

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

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

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

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reviews h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

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

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

.reviewer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
}

.reviewer i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

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

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

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

.footer-section a:hover,
.footer-section a.active {
    color: var(--accent-color);
}

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

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

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

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

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

/* Blog Styles */
.blog-header {
    background: var(--background-accent);
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.blog-header h1 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.blog-articles {
    padding: 4rem 0;
    background: white;
}

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

.article-card {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.article-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.article-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

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

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

.article-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.article-card h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-card h2 a:hover {
    color: var(--accent-color);
}

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

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

/* Article Page */
.article-page {
    padding: 8rem 0 4rem;
    background: white;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.breadcrumb span {
    color: var(--text-light);
}

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

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

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

.article-page h1 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

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

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

.article-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-accent);
}

.article-content h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.feature-list i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

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

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

.conclusion {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

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

.conclusion h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.share-buttons a:hover {
    background: var(--accent-color);
}

.back-to-blog {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.back-to-blog:hover {
    color: var(--accent-color);
}

/* Related Articles */
.related-articles {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.related-articles h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.related-articles h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

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

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

.related-card h4 a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Newsletter */
.newsletter {
    background: var(--primary-color);
    padding: 4rem 0;
    color: white;
}

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

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text i {
    font-size: 2rem;
    color: var(--accent-color);
}

.newsletter-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

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

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #e55a2b;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: white;
}

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

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

.legal-header h1 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-accent);
}

.legal-content h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.legal-content h3,
.legal-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Special Legal Page Components */
.purpose-list,
.rights-grid,
.contract-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item,
.right-item,
.element-item {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.purpose-item i,
.right-item i,
.element-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.company-details,
.contact-info {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

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

.detail-item i,
.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.services-list {
    list-style: none;
    margin: 1rem 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
}

.services-list i {
    color: var(--accent-color);
}

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

.policy-item,
.security-item {
    background: var(--background-accent);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.policy-item i,
.security-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

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

.contact-method {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

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

/* Cookie Page Specific */
.cookie-types,
.cookie-management {
    margin: 2rem 0;
}

.cookie-type,
.management-option {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.cookie-type i,
.management-option i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.cookie-type h3,
.management-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

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

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

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

.third-party-cookies {
    margin: 2rem 0;
}

.third-party-item {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

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

.third-party-item a {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.manage-cookies-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.manage-cookies-btn:hover {
    background: #e55a2b;
}

.browser-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.browser-links a {
    color: var(--accent-color);
    padding: 0.25rem 0.5rem;
    background: var(--background-accent);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.impact-warning {
    margin: 2rem 0;
}

.warning-item {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-item i {
    color: #d63031;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

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

.faq-item {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item h4 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Thank You Page */
.thank-you-page {
    padding: 8rem 0 4rem;
    background: var(--background-secondary);
    min-height: 100vh;
}

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

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

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

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

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.form-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 2rem 0;
    text-align: left;
}

.form-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-summary h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.form-summary p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.next-steps {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 3rem 0;
}

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

.next-steps h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
}

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

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

.contact-reminder {
    background: var(--background-accent);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

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

.contact-reminder h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.social-proof {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 3rem 0;
}

.social-proof h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.social-proof h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

.newsletter-signup {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.newsletter-signup h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-signup i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

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

.inline-newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.inline-newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    min-width: 250px;
}

.inline-newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-newsletter-form button:hover {
    background: #e55a2b;
}

.emergency-contact {
    background: #fee;
    border: 1px solid #fcc;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

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

.emergency-info i {
    color: #d63031;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.emergency-info h4 {
    color: #d63031;
    margin-bottom: 0.5rem;
}

.emergency-details {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.emergency-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
}

.emergency-details i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-heavy);
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-content p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.btn-accept-all:hover {
    background: #e55a2b;
}

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

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

.btn-custom {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-custom:hover {
    background: rgba(255,255,255,0.1);
}

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

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

.cookie-settings-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-settings-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.close-settings {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.close-settings:hover {
    color: var(--accent-color);
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.cookie-category h4 {
    color: var(--primary-color);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 25px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--accent-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(25px);
}

.cookie-toggle.disabled .cookie-slider {
    background-color: var(--primary-color);
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-settings-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition);
}

.save-settings {
    background: var(--primary-color);
    color: white;
}

.save-settings:hover {
    background: var(--accent-color);
}

.cancel-settings {
    background: var(--background-accent);
    color: var(--text-primary);
}

.cancel-settings:hover {
    background: var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .info-grid,
    .services-grid,
    .process-timeline,
    .stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .inline-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .inline-newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .emergency-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .purpose-list,
    .rights-grid,
    .contract-elements,
    .steps-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .cookie-settings-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .browser-links {
        flex-direction: column;
    }
    
    .browser-links a {
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-settings-modal,
    .social-links,
    .share-buttons,
    .action-buttons,
    .newsletter,
    .newsletter-signup {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero-banner {
        background: white;
        color: black;
        padding: 2rem 0;
        margin-top: 0;
        min-height: auto;
    }
    
    .hero-content {
        color: black;
    }
    
    .hero-content h1 {
        color: black;
        text-shadow: none;
    }
    
    .statistics {
        background: white;
        color: black;
    }
    
    .stat-item h3,
    .stat-item p {
        color: black;
    }
    
    .footer {
        background: white;
        color: black;
        border-top: 1px solid black;
    }
    
    .footer-section h3,
    .footer-section h4,
    .footer-section p,
    .footer-section a {
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #333333;
        --accent-color: #ff0000;
        --text-primary: #000000;
        --text-secondary: #333333;
        --background-primary: #ffffff;
        --background-secondary: #f0f0f0;
        --border-color: #000000;
    }
    
    .navbar,
    .service-card,
    .review-card,
    .article-card {
        border: 2px solid var(--border-color);
    }
    
    .cta-button,
    .submit-btn,
    .btn-primary {
        border: 2px solid black;
    }
}

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

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
