.csc-container {
    margin-top: 70px;
}

.hero {
    padding: 50px 0;
    background: linear-gradient(358deg, var(--JD-Green), var(--JD-yellow));
    color: white;
    height: calc(100vh - 70px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    opacity: 0.9;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.description,
.features,
.benefits {
    margin: 40px 0;
    padding: 20px;
}

.description {
    max-width: 1200px;
    margin: 0px auto;
}

.description h2 {
    margin: 20px 0px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    width: 45%;
    margin-bottom: 30px;
    text-align: center;
}

.feature img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.benefits h2 {
    text-align: center;
    margin: 20px 0px;
}

.benefits ul {
    list-style-type: none;
    padding: 0;
}

.benefits li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.parallax-container {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    text-align: center;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;

    h2 {
        text-shadow: 0px 0px 2px #545454;
        color: white;
    }
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 10px;
}

.image-gallery img {
    width: 200px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.features {
    margin: 40px 0;
    padding: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.benefits {
    margin: 40px 0;
    padding: 20px;
}

.accordion {
    max-width: 800px;
    margin: 10px auto;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    background-color: #f5f5f5;
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-content {
    padding: 15px;
    background-color: #fff;
    display: none;
}

.accordion-content p {
    margin: 0;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    font-size: smaller;
}

.modal-content img {
    max-width: 80%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.close {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
    padding: 0px;
    border-radius: 3rem;
    height: 30px;
    width: 30px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

@media (width <=768px) {
    .parallax-content {
        div {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            grid-column-gap: 5px;
            grid-row-gap: 5px;
        }
    }
}

#modal-description {
    margin-top: 20px;
}