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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.legal-container {
    max-width: 900px;
}

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: none;
}

.main-nav a {
    margin-left: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm);
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.hero-right {
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline,
.cta-link,
.cta-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-primary.large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.cta-secondary {
    background: var(--accent-color);
    color: white;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-inline {
    background: transparent;
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-color);
}

.cta-inline:hover {
    background: var(--accent-color);
    color: white;
}

.cta-link {
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.cta-link:hover {
    border-bottom-color: var(--accent-color);
}

.cta-service {
    background: var(--primary-color);
    color: white;
    margin-top: var(--spacing-sm);
}

.cta-service:hover {
    background: #1a252f;
}

.cta-centered {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.split-layout.reverse {
    flex-direction: column-reverse;
}

.split-content,
.split-image,
.split-form {
    flex: 1;
}

.split-content {
    padding: var(--spacing-md) 0;
}

.split-content h2 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.split-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.intro-section {
    background: var(--bg-light);
}

.services-preview {
    background: var(--bg-white);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: var(--spacing-sm);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: var(--spacing-xs);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.8;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Form Section */
.form-section {
    background: var(--bg-light);
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-benefits {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.form-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-light);
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section,
.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-sm);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-sm);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    z-index: 999;
}

.sticky-btn {
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Sustainability List */
.sustainability-list {
    list-style: none;
    padding: 0;
}

.sustainability-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.sustainability-list li:before {
    content: "🌱";
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

/* Technology */
.tech-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.tech-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.tech-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.tech-item p {
    color: var(--text-light);
}

/* Services Detailed */
.service-detail {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border-color);
}

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

.service-header-split {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.service-header-split.reverse {
    flex-direction: column-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-light);
    font-size: 1.125rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

/* Pricing Table */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pricing-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-specs {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Pricing Info */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
}

/* Materials Grid */
.materials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.material-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.material-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.material-item ul {
    list-style: none;
    padding: 0;
}

.material-item ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-light);
}

.material-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

/* Contact Page */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-block {
    flex: 1;
}

.contact-detail {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.detail-icon {
    color: var(--accent-color);
}

.detail-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.detail-content p {
    color: var(--text-light);
}

.detail-content a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: var(--spacing-sm);
    text-align: center;
}

/* Directions */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.direction-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.direction-icon {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.direction-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.direction-card p {
    color: var(--text-light);
}

/* Info Extra */
.info-columns {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-col {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.info-col h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.info-col p {
    color: var(--text-light);
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: var(--spacing-md);
    color: var(--success-color);
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-sm);
    border-radius: 8px;
    margin-top: var(--spacing-sm);
}

/* Next Steps */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.step-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
}

/* Explore */
.explore-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.explore-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.explore-card h3 {
    font-size: 1.25rem;
    padding: var(--spacing-sm);
    color: var(--primary-color);
}

.explore-card p {
    padding: 0 var(--spacing-sm);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.explore-card .cta-link {
    display: block;
    padding: var(--spacing-sm);
}

/* Testimonial Thanks */
.testimonial-single {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.testimonial-single p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.8;
}

/* Emergency Contact */
.emergency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-box h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.email-large a {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: var(--spacing-xl) 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

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

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

.cookie-table td {
    color: var(--text-light);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .main-nav {
        display: flex;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .split-layout {
        flex-direction: row;
        gap: var(--spacing-lg);
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .tech-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tech-item {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .service-header-split {
        flex-direction: row;
        gap: var(--spacing-lg);
    }

    .service-header-split.reverse {
        flex-direction: row-reverse;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .materials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .material-item {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

    .contact-layout {
        flex-direction: row;
    }

    .directions-grid {
        flex-direction: row;
    }

    .direction-card {
        flex: 1;
    }

    .info-columns {
        flex-direction: row;
    }

    .info-col {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .explore-grid {
        flex-direction: row;
    }

    .explore-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 0;
    }

    .footer-col {
        flex: 1 1 0;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 0;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1 1 0;
    }

    .materials-grid {
        flex-wrap: nowrap;
    }

    .material-item {
        flex: 1 1 0;
    }
}
