/* Consultoría Page Styles */
.catalog-page, .movie-detail-page {
    background-color: #000;
    min-height: 100vh;
}

/* Highlight colors */
.color-highlight {
    color: rgba(186, 255, 41, 1);
}

.color-highlight-orange {
    color: rgba(220, 150, 90, 1);
}

/* Hero Section - Fondo Negro */
.hero-catalog-section {
    background-color: #000000;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
}

/* Label de sección */
.section-label {
    margin-bottom: 3rem;
}

.label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 7%;
    color: rgba(186, 255, 41, 1);
    text-transform: uppercase;
}

/* Título principal */
.hero-title-container {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: -3%;
    color: #ffffff;
    margin: 0;
}

/* Descripción hero */
.hero-description {
    margin-top: 2rem;
}

.description-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.description-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
        line-height: 60px;
    }
    
    .description-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .hero-plataforma-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }
    
    .description-text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hero-plataforma-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .description-text {
        font-size: 20px;
    }
    
    .label-text {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .description-text {
        font-size: 18px;
    }
    
    .label-text {
        font-size: 16px;
    }
}

/* Segunda Sección - Catálogo de Películas */
.movies-catalog-section {
    background-color: #000000;
    padding: 80px 0;
}

/* Grid de Películas */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tarjeta de Película */
.movie-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.movie-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.movie-card {
    background-color: rgba(29, 29, 29, 1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Imagen de la Película */
.movie-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem;
    /* Altura fija para uniformidad visual */
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Imagen completa sin cortar */
    transition: transform 0.3s ease;
}


.movie-placeholder {
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667;
    font-size: 3rem;
}

/* Información de la Película */
.movie-info {
    padding: 1.5rem;
}

/* Metadatos de la película (formato, género, año, país) */
.movie-meta {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2; /* Cambiado de 100% a 1.2 para mejor legibilidad */
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 1rem 0;
    /* Altura fija equivalente a 2 líneas */
    min-height: calc(16px * 1.2 * 2); /* font-size × line-height × 2 líneas = 38.4px */
    height: calc(16px * 1.2 * 2);
    display: flex;
    align-items: flex-start; /* Alinear texto al inicio */
    overflow: hidden; /* Ocultar si excede 2 líneas */
}

/* Información del director */
.movie-director {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2; /* Consistente con movie-meta */
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 1rem 0;
    /* Altura fija para uniformidad */
    min-height: calc(16px * 1.2); /* Una línea */
    height: calc(16px * 1.2);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

/* Botón Ver Más */
.movie-view-more {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.movie-view-more:hover {
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    opacity: 0.8;
}

.movie-type {
    margin-bottom: 1rem;
}

.type-badge {
    background-color: rgba(186, 255, 41, 1);
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
}

.movie-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

/* Detalles de la Película */
.movie-details {
    margin-bottom: 1.5rem;
}

.movie-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.detail-label {
    color: #cccccc;
    font-weight: 400;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* === MOVIE DETAIL PAGE STYLES === */

/* Movie Detail Hero Section */
.movie-detail-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 8rem 0 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Movie Detail Image */
.movie-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(29, 29, 29, 1);
}

.movie-detail-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.movie-detail-placeholder {
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 29, 29, 1);
    color: #666;
    font-size: 4rem;
}

/* Format Badge */
.movie-format-badge {
    margin-bottom: 1.5rem;
}

.format-text {
    background-color: rgba(186, 255, 41, 1);
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    display: inline-block;
}

/* Movie Detail Title */
.movie-detail-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Basic Info */
.movie-basic-info {
    margin-bottom: 2rem;
}

.movie-meta-info {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Description */
.movie-description {
    margin-bottom: 3rem;
}

/* Back Button */
.back-button-container {
    margin-top: 3rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(186, 255, 41, 1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: rgba(186, 255, 41, 1);
    color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(186, 255, 41, 0.3);
}

.back-button svg {
    flex-shrink: 0;
}

/* Movie Details Section */
.movie-details-section {
    background: #0a0a0a;
    padding: 6rem 0;
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Technical Info */
.technical-info {
    background: rgba(29, 29, 29, 1);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
}

.tech-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.tech-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tech-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: rgba(186, 255, 41, 1);
    flex-shrink: 0;
    margin-right: 2rem;
}

.tech-value {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: right;
    flex-grow: 1;
}

/* YouTube Video */
.youtube-video {
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background: rgba(29, 29, 29, 1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .movie-detail-title {
        font-size: 2.5rem;
    }
    
    .movie-detail-hero-section {
        padding: 6rem 0 4rem 0;
        text-align: center;
    }
    
    .movie-details-section {
        padding: 4rem 0;
    }
    
    .technical-info {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .tech-detail-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .tech-value {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .movie-detail-title {
        font-size: 2rem;
    }
    
    .movie-detail-hero-section {
        padding: 4rem 0 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* === NEW MOVIE DETAIL LAYOUT === */

/* Movie Detail Content Section */
.movie-detail-content-section {
    padding: 4rem 0 6rem 0;
}

.movie-detail-card {
    background: rgba(29, 29, 29, 1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

/* Movie Poster */
.movie-detail-poster {
    height: 100%;
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
}

.poster-placeholder {
    aspect-ratio: 2/3;
    background: rgba(29, 29, 29, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 3rem;
}

/* Main Movie Info */
.movie-main-info {
    padding-left: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.movie-main-info::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(186, 255, 41, 1);
}

.movie-title-large {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 74px;
    letter-spacing: -3%;
    color: #ffffff;
    margin-bottom: 2rem;
    margin-top: 0; /* Align with top of image */
    text-transform: uppercase;
}

.movie-synopsis {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.movie-synopsis p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

/* YouTube Link */
.youtube-link-container {
    margin-top: auto;
}

.youtube-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: rgba(186, 255, 41, 0.8);
    text-decoration: none;
}

/* Technical Specifications */
.movie-technical-specs-wrapper {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.movie-technical-specs {
    padding-left: 2rem;
}

.spec-group {
    margin-bottom: 1.5rem;
}

.spec-group:last-child {
    margin-bottom: 0;
}

.spec-item {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    color: #ffffff;
}

.spec-value {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    color: #ffffff;
}

.production-info {
    border-top: 1px solid #666;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Back to Catalog Button */
.back-to-catalog {
    text-align: left;
}

.back-catalog-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-catalog-btn:hover,
.back-catalog-btn:focus {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    text-decoration: none;
}

/* Responsive Design for New Layout */
@media (max-width: 991px) {
    .movie-detail-card {
        padding: 2rem;
    }
    
    .movie-main-info,
    .movie-technical-specs {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .movie-title-large {
        font-size: 2rem;
        text-align: center;
    }
    
    .movie-synopsis {
        text-align: center;
    }
    
    .youtube-link-container {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .movie-detail-content-section {
        padding: 3rem 0 4rem 0;
    }
    
    .movie-detail-card {
        padding: 1.5rem;
    }
    
    .movie-title-large {
        font-size: 1.8rem;
    }
    
    .movie-synopsis p {
        font-size: 14px;
    }
}

/* Botón Ver Más */
.movie-actions {
    margin-top: auto;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    background-color: rgba(186, 255, 41, 1);
    color: #000000;
    border-color: rgba(186, 255, 41, 1);
    text-decoration: none;
    transform: translateX(5px);
}

.btn-ver-mas svg {
    transition: transform 0.3s ease;
}

.btn-ver-mas:hover svg {
    transform: translateX(3px);
}

/* Mensaje cuando no hay películas */
.no-movies-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.no-movies-message h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: rgba(186, 255, 41, 1);
    margin-bottom: 1rem;
}

.no-movies-message p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cccccc;
}

/* Responsive Design para Grid de Películas */
@media (max-width: 1199px) {
    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .movie-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .movies-catalog-section {
        padding: 60px 0;
    }
    
    .movies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    
    .movie-title {
        font-size: 20px;
    }
    
    .movie-info {
        padding: 1.25rem;
    }
}

@media (max-width: 575px) {
    .movie-card {
        border-radius: 15px;
    }
    
    .movie-info {
        padding: 1rem;
    }
    
    .movie-title {
        font-size: 18px;
    }
    
    .movie-detail {
        font-size: 13px;
    }
    
    .btn-ver-mas {
        font-size: 13px;
        padding: 0.6rem 1rem;
    }
}

/* Segunda Sección - ¿Qué ofrecemos? */
.services-section {
    background-color: #000000;
    padding: 80px 0;
}

.services-main-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin-bottom: 3rem;
}

/* Acordeón de Servicios */


.accordion-item {
    border-bottom: 1px solid rgba(245, 245, 245, 0.5);
    margin-bottom: 0;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(245, 245, 245, 0.5);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-content {
    flex: 1;
    padding-right: 2rem;
}

.accordion-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.accordion-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon {
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Contenido desplegado */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 0 2rem 0;
}

/* Descripción del servicio - Primera columna */
.service-description {
    padding-right: 2rem;
}

.service-description p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

/* Caja de información - Segunda columna */
.service-info-box {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 2rem;
    height: fit-content;
}

.service-info-box p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

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

.service-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

/* Tercera Sección - Proyectos Asesorados */
.projects-section {
    background-color: #000000;
    padding: 80px 0;
}

.projects-content {
    padding-right: 3rem;
}

.projects-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0%;
    color: rgba(220, 150, 90, 1);
    margin-bottom: 2rem;
}

.projects-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

/* Lista de proyectos */
.project-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.project-check {
    width: 30px;
    height: 30px;
    background-color: rgba(220, 150, 90, 1);
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.project-check i {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.project-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 76px;
    letter-spacing: 0%;
    color: #ffffff;
}

/* Responsive Design para Acordeón */
@media (max-width: 1199px) {
    .services-main-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .accordion-title {
        font-size: 48px;
    }
    
    .accordion-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .accordion-title {
        font-size: 40px;
    }
    
    .accordion-subtitle {
        font-size: 20px;
    }
    
    .accordion-content {
        padding-right: 1rem;
    }
    
    .service-description {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .accordion-toggle {
        width: 50px;
        height: 50px;
    }
    
    .toggle-icon {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .services-main-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .accordion-title {
        font-size: 32px;
    }
    
    .accordion-subtitle {
        font-size: 18px;
    }
    
    .accordion-header {
        padding: 1.5rem 0;
    }
    
    .service-info-box {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .accordion-title {
        font-size: 28px;
    }
    
    .accordion-subtitle {
        font-size: 16px;
    }
    
    .accordion-toggle {
        width: 40px;
        height: 40px;
    }
    
    .toggle-icon {
        font-size: 18px;
    }
}

.pb-60 {
    padding-bottom: 60px;
}

/* Movie Detail Description with Vertical Line */
.movie-detail-description {
    position: relative;
    height: 100%;
}

.movie-detail-description::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(186, 255, 41, 1);
}

.movie-detail-description {
    padding-right: 2rem;
}