:root {
    /* Color Palette - Updated Premium Scheme */
    --primary-color: #5d3e41;
    /* Rosewood Brown */
    --secondary-color: #c5a059;
    /* Champagne Gold */
    --accent-color: #d4a5a5;
    /* Dusty Rose */
    --text-color: #5d4a3e;
    /* Rich Brown */
    --text-light: #fdf8f5;
    --bg-light: #faf3ef;
    /* Soft Beige */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    padding-top: 80px;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

.break-mobile {
    display: inline;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 62, 65, 0.1);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 10px 0;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(93, 62, 65, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Base for absolute toggle */
}

.logo-group {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    z-index: 2100;
    max-width: 300px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-top: 2px;
    font-weight: 600;
}

.logo-company {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    white-space: nowrap;
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition);
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Hero Section - Full Background with Left Alignment */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 1) 85%),
        url('../assets/lidia -70_1_1.jpg') no-repeat 100% 60% / auto 54vw;
    background-color: #ffffff;
    color: var(--text-color);
    text-align: left;
    padding: 100px 0;
}

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

.hero-text {
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero .hero-experience {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--text-color);
    opacity: 0.9;
    font-style: normal;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero .btn {
    background-color: #5d3e41;
    /* Dark Brown/Rosewood */
    color: var(--white);
    padding: 15px 35px;
}

.hero .btn:hover {
    background-color: #c5a059;
}

.hero .btn-outline {
    border: 2px solid #5d3e41;
    color: #5d3e41;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.hero .btn-outline:hover {
    background: #5d3e41;
    color: var(--white);
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.7) 100%), url('../assets/lidia -70_1_2.jpg') no-repeat 30% center / auto 100%;
        text-align: left;
        padding: 60px 0;
    }

    .hero-text {
        max-width: 100%;
        margin: 0;
    }

    .hero-divider {
        margin: 0 0 30px 0;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 180px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .hero-experience {
        font-size: 0.95rem;
        margin-bottom: 30px;
        max-width: 240px;
    }

    .break-mobile {
        display: block;
    }
}

/* Services */
.services {
    background-color: var(--bg-light);
}

/* Services Grid Layouts */
.services-grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.services-grid.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card-premium {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(93, 62, 65, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(93, 62, 65, 0.12);
}

.service-content {
    padding: 30px 40px 30px;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: #faf3ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    margin: 20px 0;
}

.btn-simulation {
    display: inline-block;
    padding: 18px 45px;
    background-color: #2b1d12;
    color: #c5a059;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 25px rgba(43, 29, 18, 0.2);
}

.btn-simulation:hover {
    background-color: #3d2a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(43, 29, 18, 0.3);
}

.card-subtitle-small {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: -15px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-img-bottom,
.service-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-img-bottom {
    margin-top: auto;
}

.service-img-top {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .services-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .services-grid.two-cols,
    .services-grid.four-cols {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 40px 30px 20px;
    }
}

/* Blog Section */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.blog-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(93, 62, 65, 0.1);
}

.blog-date {
    display: none;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Archive Section */
.archive-list {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed var(--accent-color);
}

.archive-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.archive-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.archive-item:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(93, 62, 65, 0.05);
}

.archive-item .archive-date {
    display: none;
}

.archive-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
    line-height: 1.3;
}

.archive-item:hover h4 {
    color: var(--primary-color);
}

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

.about-content {
    display: block;
    overflow: hidden;
}

.about-photo-wrap {
    float: right;
    width: 380px;
    height: auto;
    border-radius: 12px;
    margin: 0 0 30px 40px;
    border: 10px solid var(--bg-light);
    box-shadow: 0 20px 40px rgba(93, 62, 65, 0.1);
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title.left::after {
    margin: 15px 0 0;
}

@media (max-width: 768px) {
    .about-photo-wrap {
        float: none;
        display: block;
        width: 100%;
        max-width: 280px;
        /* Reduced to avoid 'giant' look */
        margin: 0 auto 30px;
        border-width: 6px;
        /* Thinner border for smaller screens */
    }

    .section-title.left {
        text-align: center;
    }

    .section-title.left::after {
        margin: 15px auto 0;
    }
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.collaboration {
    font-weight: 600;
    color: var(--accent-color);
}

.collaboration a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newsletter-inputs {
    display: flex;
    gap: 15px;
    width: 100%;
}

.newsletter-inputs input {
    flex-grow: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    color: var(--primary-color);
    background: white;
}

.newsletter-inputs .btn {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    white-space: nowrap;
}

.newsletter-rgpd {
    text-align: left;
    display: flex;
    justify-content: center;
}

.newsletter-rgpd .checkbox-container {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
}

.newsletter-rgpd .checkbox-container a {
    color: var(--white) !important;
    text-decoration: underline !important;
}

.newsletter-rgpd .checkmark {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.subscribe-success {
    display: none;
    color: var(--white);
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .newsletter {
        padding: 60px 20px;
    }
    
    .newsletter-inputs {
        flex-direction: column;
    }
    
    .newsletter-inputs .btn {
        width: 100%;
    }
}

/* Newsletter Inline (Blog Section) */
.newsletter-inline {
    background-color: var(--bg-light);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 40px;
    margin: 30px auto 50px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(93, 62, 65, 0.05);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(93, 62, 65, 0.2);
    font-size: 1.1rem;
    color: var(--text-color);
    background: white;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

.newsletter-form .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-inline {
        padding: 30px 20px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form .btn {
        width: 100%;
    }
}

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

.contact-wrapper {
    display: flex;
    gap: 60px;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(93, 62, 65, 0.05);
}

.contact-info {
    flex: 1;
}

.contact-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--bg-light);
    box-shadow: 0 10px 20px rgba(93, 62, 65, 0.05);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-form {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

/* RGPD Styling */
.form-rgpd {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 10px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    background-color: var(--accent-color);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--secondary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rgpd-info {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.4;
}

.rgpd-info strong {
    color: var(--primary-color);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.footer-collaboration {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(93, 62, 65, 0.1);
        z-index: 2050;
    }

    .nav-links.active {
        right: 0;
    }

    .logo {
        font-size: 32px;
        max-width: calc(100% - 60px);
        /* Leave space for toggle */
    }

    .mobile-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 80px 0 60px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 90%), url('../assets/lidia -70_1_2.jpg') no-repeat 30% center / cover;
        text-align: left;
        display: flex;
        align-items: flex-start;
    }

    .hero .container {
        width: 100%;
    }

    .logo {
        font-size: 24px;
        max-width: calc(100% - 50px);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p,
    .hero .hero-experience {
        font-size: 0.95rem;
        margin-bottom: 30px;
        max-width: 240px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 180px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .about-img img {
        width: 250px;
        height: 250px;
    }

    /* Contact */
    .contact-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title.left {
        text-align: center;
    }

    .section-title.left::after {
        margin: 15px auto 0;
    }
}

/* Blog Post Page Styles */
.blog-post {
    padding: 80px 0 60px;
    /* Increased top padding to avoid header overlap */
    background: var(--white);
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 5px;
    transition: var(--transition);
}

.back-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

.post-header {
    margin-bottom: 40px;
    text-align: left;
}

.post-header h1 {
    font-size: 3rem;
    margin-top: 10px;
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: left;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.post-content h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
    margin: 40px 0;
    text-align: left;
}

.post-footer {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--accent-color);
    font-weight: 600;
}

.post-footer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive updates for post */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2.2rem;
    }

    .post-content {
        font-size: 1.05rem;
        text-align: left;
    }
}

/* Imgenes en el contenido */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ql-editor img {
    max-width: 100%;
    height: auto;
}


/* Pie de pgina legal */
.footer-legal {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.8;
}

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


/* Ajustes finales para imgenes en mviles */
@media (max-width: 768px) {
    .post-content img {
        max-width: 90%;
        margin: 1.5rem auto;
    }
}



/* Correccion visibilidad enlaces legal */
.form-rgpd a,
.checkbox-container a {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
    font-weight: 600;
}

/* Mi forma de trabajar */
.how-we-work {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.how-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.how-intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.how-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.how-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(93, 62, 65, 0.05);
}

.how-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.how-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.how-outro {
    max-width: 900px;
    margin: 0 auto;
}

.how-outro-text {
    margin-bottom: 40px;
}

.how-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

.check-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .how-cards,
    .how-checklist {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    transition: bottom 0.5s ease-in-out;
    padding: 20px 0;
    border-top: 3px solid var(--secondary-color);
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookies {
    background-color: var(--primary-color);
    color: var(--white);
    white-space: nowrap;
    padding: 10px 25px;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-cookies {
        width: 100%;
    }
}