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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Color Palette - Luxury theme without pink/blue/dark */
:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #8b7355; /* Bronze */
    --accent-color: #c9a96e; /* Light Gold */
    --text-dark: #2c2c2c;
    --text-light: #666;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #d4af37, #c9a96e);
}

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

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-light);
}

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

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

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

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f7dc6f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #f7dc6f, #d4af37);
    color: white;
    border: 2px solid #d4af37;
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8e53, #ff6b35);
    color: white;
    border: 2px solid #ff6b35;
}

.btn-outline {
    background-color: transparent;
    border: 3px solid #d4af37;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(45deg, #d4af37, #f7dc6f);
    color: white;
    border: 3px solid #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.2rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px var(--shadow);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

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

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

.cookie-buttons .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    justify-content: center;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: 2px solid transparent;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.4);
}

.cookie-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.6);
}

.cookie-buttons .btn-secondary {
    background: linear-gradient(45deg, #ffc107, #ffcd39);
    color: #333;
    border: 2px solid transparent;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.4);
}

.cookie-buttons .btn-secondary:hover {
    background: linear-gradient(45deg, #ffcd39, #ffc107);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.6);
}

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

.cookie-buttons .btn-outline:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
}

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

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

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

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

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-color);
}

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

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

/* About Section */
.about-section {
    background: var(--background-light);
}

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

.about-text h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-text h2 i {
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Portfolio Preview */
.portfolio-preview {
    background: white;
}

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

.portfolio-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

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

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

.portfolio-item p {
    margin-bottom: 1.5rem;
}

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

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Process Section */
.process-section {
    background: var(--background-light);
}

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

.step {
    text-align: center;
    position: relative;
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

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

/* Blog Preview */
.blog-preview {
    background: var(--background-light);
}

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

.blog-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

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

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

.blog-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-cta p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    color: var(--primary-color);
    margin: 0;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.social-links a:hover {
    transform: translateY(-3px);
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

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

/* Blog Article Styles */
.article-header {
    background: linear-gradient(135deg, #f8f6f0, #ede8db);
    padding: 6rem 0 4rem;
    margin-top: 60px;
}

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

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

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

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

.article-category,
.article-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-category i,
.article-date i,
.reading-time i {
    color: var(--primary-color);
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin-top: 2rem;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.author-details strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

.article-content {
    padding: 4rem 0;
    background: white;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.content-section h3 {
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.content-section h4 {
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.content-section li strong {
    color: var(--text-dark);
}

.highlight-box {
    background: linear-gradient(135deg, #fef9e7, #f8f4e6);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.1);
}

.highlight-box h3,
.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-box h3 i,
.highlight-box h4 i {
    color: var(--primary-color);
}

.highlight-box ul {
    margin: 0;
}

.data-visualization {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.data-visualization h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.price-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.price-bar:hover {
    transform: translateX(5px);
    background: #f1f3f4;
}

.price-bar.current {
    background: linear-gradient(135deg, #fef9e7, #f8f4e6);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.price-bar .year {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 60px;
}

.price-bar .bar {
    background: var(--gradient);
    height: 20px;
    border-radius: 10px;
    min-width: 20px;
    transition: width 0.6s ease;
}

.price-bar .price {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
    text-align: right;
}

.trend-highlight {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    margin: 2rem 0;
}

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

.stat-item,
.demo-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number,
.demo-percentage {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label,
.demo-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.technology-showcase {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #007bff;
}

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

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.tech-item h5 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.demographic-insights {
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
}

.call-to-action {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.call-to-action h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.call-to-action p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.article-sidebar {
    max-width: 300px;
    margin-left: 2rem;
}

.contact-sidebar,
.newsletter-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    margin-bottom: 2rem;
}

.contact-sidebar h4,
.newsletter-sidebar h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-sidebar h4 i,
.newsletter-sidebar h4 i {
    color: var(--primary-color);
}

.author-bio {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-articles h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.related-articles h3 i {
    color: var(--primary-color);
}

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

.related-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
}

.related-item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.related-item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.conclusion {
    background: linear-gradient(135deg, #f8f6f0, #ede8db);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.conclusion h2 {
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Tables in articles */
.depreciation-table,
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.depreciation-table table,
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.depreciation-table th,
.comparison-table th {
    background: var(--gradient);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.depreciation-table td,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.depreciation-table tr:nth-child(even),
.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.depreciation-table h4,
.comparison-table h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Tax overview styles */
.tax-overview {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    margin: 2rem 0;
}

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

.tax-type {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tax-type:hover {
    transform: translateY(-3px);
    background: #f1f3f4;
}

.tax-type i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tax-type h5 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.tax-type p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Cantonal comparison */
.cantonal-comparison {
    margin: 2rem 0;
}

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

.canton-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s ease;
}

.canton-item:hover {
    transform: translateY(-3px);
}

.canton-item.low-tax {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid #28a745;
}

.canton-item.medium-tax {
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    border: 2px solid #ff9800;
}

.canton-item.high-tax {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #f44336;
}

.canton-item h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.canton-item .tax-rate {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.canton-item .annual-tax {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Currency comparison styles */
.currency-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.currency-item:hover {
    transform: translateY(-2px);
    background: #f1f3f4;
}

.currency-item .currency {
    font-weight: 600;
    color: var(--text-dark);
}

.currency-item .performance {
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.currency-item .performance.positive {
    background: #d4edda;
    color: #155724;
}

.currency-item .performance.negative {
    background: #f8d7da;
    color: #721c24;
}

.currency-item .performance.neutral {
    background: #e2e3e5;
    color: #383d41;
}

/* Planning timeline styles */
.planning-timeline {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    margin: 2rem 0;
}

.planning-timeline h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.timeline-step {
    position: relative;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timeline-step .step-time {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.timeline-step .step-content h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timeline-step .step-content ul {
    margin: 0;
    font-size: 0.9rem;
}

.timeline-step .step-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sustainability-stats,
    .demo-stats,
    .tech-grid,
    .tax-types,
    .canton-grid,
    .currency-comparison,
    .timeline-steps {
        grid-template-columns: 1fr;
    }
    
    .price-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .price-bar .bar {
        width: 100% !important;
    }
    
    .related-list {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .portfolio-item,
    .blog-card,
    .testimonial {
        padding: 2rem 1.5rem;
    }
}

/* Additional Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

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

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