:root {
  --color-primario: #FF0066 ;
  --color-secundario: #0A1A2F ;
  --color-texto: #ffffff;
  --color-texto-secundario: #555555;
  --color-hover: #00E6D0 ;
  --font-titulos: 'Quantico', sans-serif;
  --font-texto: 'Roboto', sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700; 
}


header {
    background: var(--color-primario);
    color: var(--color-texto);
    font-weight: var(--font-weight-normal);
    padding: 10px 0; /* Este padding se incluye en initialHeroHeight */
    text-align: center;
}

.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-texto);
    color: var(--color-texto);
}

.title-hero {
    font-family: var(--font-titulos);
    font-weight: var(--font-weight-bold);
    font-size: 2.5rem;
    text-decoration: none;
    margin: 0;
    color: var(--color-texto);
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-hero:hover {
    color: var(--color-hover);
    transform: scale(1.05);
}

.navbar {
    display: flex;
    position: sticky;
    top: 0;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-texto);
}
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.navbar li {
    margin: 0 10px;
}
.navbar a {
    color: var(--color-texto);
    text-decoration: none;
    font-weight: var(--font-weight-normal);
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar a:hover {
    font-weight: var(--font-weight-bold);
    color: var(--color-hover);
    transform: scale(1.05);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-texto);
    color: var(--color-texto);
    background-color: var(--color-secundario);
}

footer {
    background: var(--color-primario);
    color: var(--color-texto);
    text-align: center;
    padding: 20px 0;
    font-family: var(--font-texto);
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons li {
    margin: 0 10px;
}
.social-icons svg {
    width: 24px; /* ajusta según necesites */
    height: 24px;
    fill: var(--color-texto);
    transition: fill 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover svg {
    fill: var(--color-hover);
    transform: scale(1.05);
}

/* carrusel styles */
.carrusel {
  margin: 0 auto;
  margin-top: 1%;
  padding: 0;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: var(--color-primario) 5px 5px 20px 0;
}

.group {
  display: flex;
  width: fit-content;
  animation: scrollLoop 20s linear infinite;
}

.card {
  flex: 0 0 auto;
  width: 1000px; /* mismo ancho que el carrusel */
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Animación continua */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3000px); /* 1000px * 3 (originales) */
  }
}

.carrusel:hover .group {
  animation-play-state: paused;
}


/* main styles */
main {
    max-width: 900px;
    margin: 40px auto 60px auto;
    padding: 24px;
    background: var(--color-secundario);
    border-radius: 18px;
    box-shadow: 0 4px 24px var(--color-primario);
    font-family: 'Roboto', Arial, sans-serif;
}

main section {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-hover);
}

main section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

main h2 {
    font-family: 'Quantico', 'Roboto', Arial, sans-serif;
    font-size: 2rem;
    color: var(--color-hover);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.text_biografia,
.text_software,
.text_redes {
    font-size: 1.08rem;
    color: var(--color-texto);
    line-height: 1.7;
    margin-bottom: 12px;
}

main ul {
    margin: 12px 0 12px 24px;
    padding: 0;
    list-style: none;
}

main li {
    margin-bottom: 6px;
    font-size: 1rem;
}

main a {
    color: var(--color-hover);
    text-decoration: none;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

main a:hover {
    color: var(--color-primario);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
    main {
        padding: 10px;
    }
    main h2 {
        font-size: 1.3rem;
    }
}

/* Portafolio styles */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between items */
    margin-top: 20px;
}

.portfolio-item {
    background-color: var(--color-secundario); /* Dark background for items */
    border: 1px solid var(--color-hover); /* Border matching your hover color */
    border-radius: 10px;
    overflow: hidden; /* Ensures image corners are rounded */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px; /* Add padding at the bottom for content */
}

.portfolio-item:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px var(--color-primario); /* More pronounced shadow and glow */
}

.portfolio-item img {
    width: 100%;
    height: 200px; /* Fixed height for portfolio images */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-bottom: 1px solid var(--color-primario); /* Separator for image */
    margin-bottom: 15px; /* Space below image */
}

.portfolio-item h3 {
    font-family: var(--font-titulos);
    color: var(--color-hover);
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding: 0 15px;
}

.portfolio-item p {
    font-family: var(--font-texto);
    color: var(--color-texto);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 15px;
}

.portfolio-item .btn {
    display: inline-block;
    background-color: var(--color-primario);
    color: var(--color-texto);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-item .btn:hover {
    background-color: var(--color-hover);
    color: var(--color-secundario); /* Change text color on hover for contrast */
    transform: scale(1.05);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* Stack items on very small screens */
        gap: 25px;
    }
    .portfolio-item {
        padding-bottom: 15px;
    }
    .portfolio-item img {
        height: 180px;
    }
    .portfolio-item h3 {
        font-size: 1.3rem;
    }
    .portfolio-item p {
        font-size: 0.95rem;
    }
}

/* Estilos generales para las páginas de detalle de proyecto */
.project-detail-main {
    max-width: 1000px; /* Un poco más ancho que el main de index para contenido multimedia */
    margin: 40px auto 60px auto;
    padding: 24px;
    background: var(--color-secundario);
    border-radius: 18px;
    box-shadow: 0 4px 24px var(--color-primario);
    font-family: var(--font-texto);
    color: var(--color-texto);
}

.project-detail-main section {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-hover);
}

.project-detail-main section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Encabezado del proyecto */
.project-header h1 {
    font-family: var(--font-titulos);
    font-size: 3rem;
    color: var(--color-primario);
    text-align: center;
    margin-bottom: 10px;
}

.project-tagline {
    font-size: 1.2rem;
    color: var(--color-hover);
    text-align: center;
    margin-bottom: 20px;
}

.project-meta {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-texto);
    margin-bottom: 30px;
}
.project-meta span {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}


/* Sección de medios (imágenes/videos) */
.project-media .main-project-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limita la altura de la imagen principal */
    object-fit: cover; /* Mantiene la proporción de la imagen */
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-hover);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.video-responsive iframe,
.video-responsive video { /* This now applies to both iframe and video tags */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.project-media .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-media .gallery img {
    width: 100%;
    height: 180px; /* Altura fija para las miniaturas de la galería */
    object-fit: cover; /* Mantiene la proporción de las imágenes */
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-secundario);
}

.project-media .gallery img:hover {
    transform: scale(1.02);
    border-color: var(--color-primario);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

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



/* Sección de descripción y más información */
.project-description h2,
.project-description h3,
.project-more-info h2 {
    font-family: var(--font-titulos);
    color: var(--color-hover);
    margin-bottom: 15px;
    font-size: 2rem;
    padding-left: 10px;
    border-left: 5px solid var(--color-primario);
}
.project-description h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    border-left-color: var(--color-hover);
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-texto);
    margin-bottom: 15px;
}

.project-more-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.project-more-info li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-texto);
}
.project-more-info li strong {
    color: var(--color-primario);
}

/* Botones de navegación/enlace */
.btn { /* Reutiliza tus estilos de botón existentes */
    display: inline-block;
    background-color: var(--color-primario);
    color: var(--color-texto);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    margin: 10px 10px 10px 0;
}

.btn:hover {
    background-color: var(--color-hover);
    color: var(--color-secundario);
    transform: scale(1.05);
}

.btn.back-to-portfolio {
    background-color: var(--color-texto-secundario); /* Un color diferente para el botón de regreso */
    color: var(--color-texto);
}
.btn.back-to-portfolio:hover {
    background-color: var(--color-hover);
    color: var(--color-secundario);
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .project-detail-main {
        padding: 15px;
    }
    .project-header h1 {
        font-size: 2.2rem;
    }
    .project-tagline {
        font-size: 1rem;
    }
    .project-media .main-project-image {
        max-height: 350px;
    }
    .project-media .gallery {
        grid-template-columns: 1fr;
    }
    .project-media .gallery img {
        height: 160px;
    }
    .project-description h2, .project-description h3, .project-more-info h2 {
        font-size: 1.8rem;
    }
    .project-description h3 {
        font-size: 1.4rem;
    }
    .project-description p, .project-more-info li {
        font-size: 1rem;
    }
}

/* Shop Section Styles */
#shop-products {
    text-align: center;
    padding: 20px 0;
}

#shop-products h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-hover);
    font-family: var(--font-titulos);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.product-item {
    background-color: #1a2a40; /* Slightly lighter than secondary for product cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.product-item img {
    width: 100%;
    height: 200px; /* Fixed height for product images */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-family: var(--font-titulos);
    font-size: 1.8rem;
    color: var(--color-texto);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-item .product-price {
    font-family: var(--font-titulos);
    font-size: 1.6rem;
    color: var(--color-hover);
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
}

.product-item .product-description {
    font-family: var(--font-texto);
    font-size: 1rem;
    color: var(--color-texto-secundario);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows description to take available space */
}

.product-item .btn-buy {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-primario);
    color: var(--color-texto);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: var(--font-titulos);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
}

.product-item .btn-buy:hover {
    background-color: var(--color-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments for shop section */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    #shop-products h2 {
        font-size: 2rem;
    }

    .product-item h3 {
        font-size: 1.5rem;
    }

    .product-item .product-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-item {
        padding: 15px;
    }

    .product-item img {
        height: 180px;
    }
}

/* Contact Page Styles */
#contact-info {
    text-align: center;
    margin-bottom: 40px;
}

#contact-info h2 {
    font-size: 2.5rem;
    color: var(--color-hover);
    font-family: var(--font-titulos);
    margin-bottom: 20px;
}

#contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-texto);
    margin-bottom: 10px;
}

#contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 10px; /* Space between list items */
}

#contact-info li {
    font-size: 1.15rem;
    color: var(--color-texto);
}

#contact-info li strong {
    color: var(--color-primario);
    margin-right: 8px;
}

#contact-info a {
    color: var(--color-hover);
    text-decoration: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

#contact-info a:hover {
    color: var(--color-primario);
    font-weight: var(--font-weight-bold);
}

.social-links-main {
    margin-top: 30px;
}

.social-links-main h3 {
    font-family: var(--font-titulos);
    font-size: 1.8rem;
    color: var(--color-hover);
    margin-bottom: 15px;
}

/* Reusing .social-icons from footer, might need minor adjustments if it affects main body */
.social-links-main .social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px; /* Adjust gap as needed */
    margin-top: 15px;
}


/* Contact Form Styles */
#contact-form {
    padding: 20px;
    background-color: #1a2a40; /* Slightly lighter than secondary for the form background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#contact-form h2 {
    font-size: 2.2rem;
    color: var(--color-primario);
    font-family: var(--font-titulos);
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--color-texto);
    margin-bottom: 8px;
    font-weight: var(--font-weight-bold);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px 10px;
    border: 1px solid var(--color-hover);
    border-radius: 5px;
    background-color: var(--color-secundario);
    color: var(--color-texto);
    font-family: var(--font-texto);
    font-size: 1rem;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--color-primario);
    outline: none;
    box-shadow: 0 0 8px rgba(255, 0, 102, 0.5); /* A subtle glow effect */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 100px; /* Minimum height for textarea */
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: var(--color-primario);
    color: var(--color-texto);
    font-family: var(--font-titulos);
    font-weight: var(--font-weight-bold);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .btn:hover {
    background-color: var(--color-hover);
    transform: translateY(-2px);
    color: var(--color-secundario);
}

/* Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    #contact-info h2 {
        font-size: 2rem;
    }

    #contact-info p {
        font-size: 1rem;
    }

    #contact-info li {
        font-size: 1.05rem;
    }

    #contact-form h2 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 0.95rem;
        padding: 10px;
    }

    .contact-form .btn {
        padding: 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #contact-info h2 {
        font-size: 1.8rem;
    }
    #contact-info p {
        font-size: 0.95rem;
    }
    #contact-info ul {
        align-items: flex-start; /* Align text to the left on small screens */
        padding-left: 20px;
    }
    #contact-form {
        padding: 15px;
    }
    #contact-form h2 {
        font-size: 1.6rem;
    }
}

/* Services Section Styles */
.services-main {
    max-width: 900px; /* Use the same max-width as your main content */
    margin: 40px auto 60px auto;
    padding: 24px;
    background: var(--color-secundario);
    border-radius: 18px;
    box-shadow: 0 4px 24px var(--color-primario);
    font-family: var(--font-texto);
    color: var(--color-texto);
}

#our-services {
    text-align: center;
    padding: 20px 0;
}

#our-services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-hover);
    font-family: var(--font-titulos);
}

.service-item {
    background-color: #1a2a40; /* Slightly lighter than secondary for service cards */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding: 25px;
    margin-bottom: 30px; /* Space between service items */
    border-left: 5px solid var(--color-primario); /* A nice accent border */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.service-item h3 {
    font-family: var(--font-titulos);
    font-size: 2rem;
    color: var(--color-hover);
    margin-bottom: 15px;
    text-align: center; /* Center service titles */
}

.service-item p {
    font-family: var(--font-texto);
    font-size: 1.05rem;
    color: var(--color-texto);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 15px 0 20px 0;
}

.service-item ul li {
    font-size: 1rem;
    color: var(--color-texto); /* Slightly less prominent for list items */
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-item ul li::before {
    content: '★'; /* Custom bullet point using an asterisk or another symbol */
    color: var(--color-primario); /* Color for the custom bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.service-item .package-options {
    background-color: #112238; /* A slightly different background for package details */
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px dashed var(--color-hover); /* A dashed border for distinction */
}

.service-item .package-options h4 {
    font-family: var(--font-titulos);
    font-size: 1.4rem;
    color: var(--color-primario);
    margin-bottom: 10px;
    text-align: center;
}

.service-item .package-options p {
    font-size: 1rem;
    color: var(--color-texto);
    margin-bottom: 10px;
}

.service-item .package-options ul {
    margin-top: 10px;
}

.service-item .package-options ul li {
    color: var(--color-texto);
}

.service-item .btn {
    display: inline-block;
    background-color: var(--color-primario);
    color: var(--color-texto);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    /* Center the button if it's the only element in its container or if you prefer */
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.service-item .btn:hover {
    background-color: var(--color-hover);
    color: var(--color-secundario);
    transform: scale(1.05);
}


/* Responsive adjustments for services section */
@media (max-width: 768px) {
    .services-main {
        padding: 15px;
    }

    #our-services h2 {
        font-size: 2rem;
    }

    .service-item {
        padding: 20px;
        margin-bottom: 25px;
    }

    .service-item h3 {
        font-size: 1.6rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }

    .service-item ul li {
        font-size: 0.9rem;
    }

    .service-item .package-options h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-main {
        padding: 10px;
    }

    #our-services h2 {
        font-size: 1.8rem;
    }

    .service-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .service-item h3 {
        font-size: 1.4rem;
    }

    .service-item .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}