/* 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: #2c2c2c;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #c49b61;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c49b61;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 20px;
    z-index: 1001;
    display: none;
}

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

.cookie-content i {
    font-size: 2rem;
    color: #c49b61;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-accept-all {
    background: #d4af37;
    color: white;
    border: 2px solid #d4af37;
    font-weight: 700;
}

.btn-accept-all:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.btn-necessary {
    background: #2c2c2c;
    color: white;
    border: 2px solid #2c2c2c;
    font-weight: 700;
}

.btn-necessary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 44, 44, 0.5);
}

.btn-settings {
    background: white;
    color: #d4af37;
    border: 2px solid #d4af37;
    font-weight: 700;
}

.btn-settings:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}



/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
}

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

.abstract-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d4af37;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border: 3px solid #d4af37;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

section h2 i {
    color: #c49b61;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
}

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

.about-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.about-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-text li i {
    color: #c49b61;
}

.about-visual {
    text-align: center;
}

.about-icon {
    font-size: 8rem;
    color: #c49b61;
    opacity: 0.8;
}

/* Investment Types */
.investment-types {
    background: white;
}

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

.type-card {
    background: linear-gradient(135deg, #c49b61 0%, #b8935a 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.type-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Location Benefits */
.location-benefits {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
}

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

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

.benefit-item i {
    font-size: 3rem;
    color: #c49b61;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c49b61;
    background: white;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #c49b61;
    font-size: 1.2rem;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.submit-btn {
    width: 100%;
    background: #d4af37;
    color: white;
    padding: 16px 25px;
    border: 3px solid #d4af37;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card i {
    color: #c49b61;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.testimonial-card span {
    font-weight: 600;
    color: #666;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c49b61;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #c49b61;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #c49b61;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .service-card,
    .type-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 0 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.type-card,
.benefit-item,
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #c49b61;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-header {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.legal-header i {
    color: #c49b61;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #888;
    font-size: 0.9rem;
}

.last-updated i {
    color: #c49b61;
}

.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
    border: 2px solid #f0ebe3;
}

.overview-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.overview-card i {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.overview-card p {
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}

.overview-card ul {
    text-align: left;
    margin-top: 1rem;
}

.overview-card ul li {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f6f0;
    border-radius: 10px;
}

.overview-item i {
    color: #c49b61;
    font-size: 1.5rem;
}

.legal-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.legal-section h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 1rem;
}

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

.legal-section h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-section h4 {
    color: #1a1a1a;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 500;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-details {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 2px solid #e8ddd4;
}

.contact-details p {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.contact-details strong {
    color: #1a1a1a;
    font-weight: 700;
}

.cookie-settings-btn {
    background: #d4af37;
    color: white;
    border: 3px solid #d4af37;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem auto 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-settings-btn:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
}

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

.explanation-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f6f0;
    border-radius: 10px;
    border: 2px solid #e8ddd4;
}

.explanation-item p {
    color: #1a1a1a;
    font-weight: 500;
}

.explanation-item i {
    color: #c49b61;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.explanation-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Article Pages Styles */
.article-page {
    padding-top: 70px;
}

.article-header {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
    padding: 60px 0;
    text-align: center;
}

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

.article-category,
.article-date,
.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-category i,
.article-date i,
.read-time i {
    color: #c49b61;
}

.article-header h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.article-icon-header {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.article-icon-header i {
    font-size: 3rem;
    color: #c49b61;
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.article-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
}

.article-section h2 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f0ebe3;
    padding-bottom: 1rem;
}

.article-section h2 i {
    color: #c49b61;
}

.article-section h3 {
    color: #2c2c2c;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.article-section p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
    font-size: 1.05rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe3 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #c49b61;
    position: relative;
}

.highlight-box i {
    color: #c49b61;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
}

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

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f6f0;
    border-radius: 10px;
    line-height: 1.6;
}

.styled-list li i {
    color: #c49b61;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Additional styles for articles */
.city-comparison-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.city-overview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #c49b61;
}

.city-overview i {
    font-size: 2.5rem;
    color: #c49b61;
    margin-bottom: 1rem;
}

.city-overview h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.city-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city-stats span {
    padding: 0.5rem 1rem;
    background: #f8f6f0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

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

.tax-concept {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #c49b61;
}

.tax-concept i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.concept-positive {
    color: #27ae60;
}

.concept-negative {
    color: #e74c3c;
}

.tax-concept h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tax-concept ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tax-concept li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Article Conclusion Styles */
.article-conclusion {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a1 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

.conclusion-content i {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: block;
}

.conclusion-content h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.conclusion-content p {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.conclusion-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #d4af37;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.conclusion-cta:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
}

.conclusion-cta i {
    font-size: 1.2rem;
}

/* Related Articles Styles */
.related-articles {
    background: #f8f6f0;
    padding: 4rem 0;
    margin-top: 3rem;
}

.related-articles h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.related-articles h2 i {
    color: #d4af37;
    margin-right: 15px;
}

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

.related-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e8ddd4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.related-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: block;
}

.related-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.related-item h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-item h3 a:hover {
    color: #d4af37;
}

.related-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive adjustments for legal and article pages */
@media (max-width: 768px) {
    .legal-header h1,
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .legal-section,
    .article-section {
        padding: 1.5rem;
    }
    
    .overview-grid,
    .cookie-explanation {
        grid-template-columns: 1fr;
    }
    
    .article-conclusion {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .conclusion-content h3 {
        font-size: 1.6rem;
    }
    
    .conclusion-content i {
        font-size: 2.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-articles h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1,
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section,
    .article-section {
        padding: 1rem;
    }
}
