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

:root {
    --primary: #2c3e50;
    --accent: #c9a875;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2c3e50;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f0;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #f5f5f0;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Slider Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Cardo', serif;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border: 2px solid var(--accent);
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.slider-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Video Section */
.video-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light);
}

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

.video-wrapper {
    margin-top: 3rem;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
}

/* PDF Download Section */
.pdf-download {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Cardo', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    font-weight: 300;
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pdf-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pdf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.pdf-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-icon svg {
    width: 40px;
    height: 40px;
}

.pdf-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: 'Cardo', serif;
}

.pdf-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pdf-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pdf-button:hover {
    background: var(--primary);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-radius: 5px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
}

.feature-icon img {
    width: 45px;
    height: 45px;
    opacity: 0.8;
    filter: grayscale(100%);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-family: 'Cardo', serif;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* About Section */
.about {
    background: white;
    padding: 8rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Cardo', serif;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: all 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    background: rgba(0,0,0,0.3);
}

.gallery-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
    z-index: 2;
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
/* Lightbox mejorado con animación suave, zoom y desenfoque */
.lightbox {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox - Animación de entrada del contenido */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    cursor: default;
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

/* Lightbox - Imagen */
.lightbox-image {
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

/* Lightbox - Botón de cerrar */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10000;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.2);
}


/* Location Section */
.location {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.location-feature:hover {
    transform: translateY(-5px);
}

.location-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
}

.location-icon img {
    width: 35px;
    height: 35px;
    opacity: 0.8;
    filter: grayscale(100%);
}

.location-feature h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: 'Cardo', serif;
}

.location-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.location-map {
    height: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
}

/* Contact Section */
.contact {
    background: var(--primary);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Cardo', serif;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    font-family: 'Cardo', serif;
    font-weight: 400;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.footer-logo-box {
    width: 100%;
    max-width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.footer-logo-box img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

/* Responsive */

/* Tablets y pantallas medianas (768px - 1200px) */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pdf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Tablets pequeñas (hasta 968px) */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(245, 245, 240, 0.1);
        color: #f5f5f0;
    }

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

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

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 400px;
    }

    .pdf-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .gallery-grid,
    .pdf-grid {
        max-width: 100%;
    }

    .video-wrapper video {
        max-height: 50vh;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Smartphones grandes (hasta 720px) */
@media (max-width: 720px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 0.5rem;
    }

    .slider-arrow.next {
        right: 0.5rem;
    }

    .slider-nav {
        bottom: 2rem;
    }
}

/* Smartphones medianos - iPhone 6/7/8 (hasta 375px) */
@media (max-width: 375px) {
    nav {
        padding: 1rem 1rem;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .features,
    .gallery,
    .location,
    .contact,
    .pdf-download,
    .video-section,
    .about,
    .properties {
        padding: 5rem 1rem;
    }

    .feature-item,
    .pdf-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon,
    .pdf-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .gallery-item {
        height: 280px;
    }

    .location-map {
        height: 350px;
    }

    .footer-main {
        gap: 3rem;
    }

    .footer-section h4 {
        font-size: 0.75rem;
    }

    .footer-logo-box {
        height: 80px;
        max-width: 200px;
    }

    .nav-links {
        width: 80%;
        padding: 70px 1.5rem 2rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.85rem 0;
    }
}

/* Smartphones pequeños (hasta 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

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

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.8rem;
    }

    .features,
    .gallery,
    .location,
    .contact,
    .pdf-download,
    .video-section,
    .about {
        padding: 4rem 0.75rem;
    }

    .feature-item,
    .pdf-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-item h3,
    .pdf-card h3 {
        font-size: 1.1rem;
    }

    .feature-item p,
    .pdf-card p {
        font-size: 0.9rem;
    }

    .gallery-item {
        height: 250px;
    }

    .location-map {
        height: 300px;
    }

    .about-image {
        height: 350px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: #f5f5f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #d4b98a;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: 2px solid;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.cookie-btn-accept:hover {
    background: #d4b98a;
    border-color: #d4b98a;
}

.cookie-btn-reject {
    background: transparent;
    border-color: #f5f5f0;
    color: #f5f5f0;
}

.cookie-btn-reject:hover {
    background: rgba(245, 245, 240, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-text {
        text-align: center;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

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

    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Landscape mode para smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 6rem 2rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slider-nav {
        bottom: 1rem;
    }

    .video-wrapper video {
        max-height: 80vh;
    }
}

