body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}
/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: linear-gradient(to bottom, #E52421, rgba(204, 32, 50, 0.03));
    color: white;
    z-index: 1000;
    padding: 25px 30px;
    display: flex;
    justify-content: center;
    align-items: center; 
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* Increased max-width to better fit larger screens */
    margin: 0 auto; /* Center the navbar-content */
    padding: 0 20px;
}

.left-nav, .center-nav, .right-nav {
    display: flex;
    align-items: center;
}

.left-nav ul, .right-nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
}

.left-nav ul {
    justify-content: flex-start;
}

.center-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-nav .logo {
    font-size: 24px; /* Increased font size for better visibility on larger screens */
    font-weight: bold;
    text-align: center;
}

.center-nav .logo a {
    color: #ffffff;
    text-decoration: none;
}

.right-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.right-nav a, .left-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px; /* Increased font size for better readability */
    display: flex;
    align-items: center;
    text-transform: lowercase; /* Convert text to lowercase */
    text-transform: capitalize; /* Convert text to capitalize (first letter uppercase) */

}

.contact-button {
    background-color: black;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    text-align: left;
}

.dropdown-menu a {
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .left-nav .menu-icon {
        display: block; /* Show menu icon on small screens */
    }

    .left-nav ul, .right-nav ul {
        display: none; /* Hide nav links on small screens */
    }
}

.welcome-hero {
    /* padding: 50px 0; */ /* Increased padding for better spacing on larger screens */
    background: #222;
    color: #fff;
    text-align: center;
}

.welcome-hero h2 {
    font-size: 48px; /* Increased font size for better visibility on larger screens */
    font-weight: bold;
    margin-bottom: 20px;
}

.welcome-hero p {
    font-size: 20px; /* Increased font size for better readability */
    margin-bottom: 30px;
}

.welcome-btn {
    background-color: #E52421;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px; /* Increased font size for better readability */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.welcome-btn:hover {
    background-color: #a81a27;
}

/* Service Section */

.single-service-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px; /* Ajusta según sea necesario */
}

.single-service-item:hover {
    transform: translateY(-10px);
}

.single-service-icon {
    font-size: 50px; /* Tamaño del ícono */
    color: #333; /* Color del ícono */
    margin-bottom: 15px;
}

.service-icon-img {
    width: 50px; /* Tamaño del ícono de imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 15px;
}

.single-service-item h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.single-service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .single-service-item {
        height: auto; /* Permite que la altura se ajuste automáticamente en pantallas pequeñas */
        margin-bottom: 20px; /* Añade espacio entre elementos en pantallas pequeñas */
    }

    .single-service-icon,
    .service-icon-img {
        font-size: 100px; /* Ajusta el tamaño del ícono en pantallas pequeñas */
        width: 40px; /* Ajusta el tamaño del ícono de imagen en pantallas pequeñas */
    }

    .single-service-item h2 {
        font-size: 18px;
    }

    .single-service-item p {
        font-size: 12px;
    }
}
/* New Cars Section */
.new-cars {
    padding: 20px 0;
    background: #f4f4f4;
}

.new-cars .section-header {
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.new-cars .new-cars-item {
    margin-bottom: 30px;
}

.new-cars .single-new-cars-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-cars .single-new-cars-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.new-cars-img img {
    width: 100%;
    border-radius: 10px;
}

.new-cars-txt {
    padding: 20px;
}

.new-cars-txt h2 a {
    color: #222323;
    text-decoration: none;
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.new-cars-txt h2 a:hover {
    color: #E52421;
}

.new-cars-txt p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.new-cars-txt .new-cars-para2 {
    color: #777;
    font-size: 14px;
}

.new-cars-txt .new-cars-btn {
    background-color: #E52421;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.new-cars-txt .new-cars-btn:hover {
    background-color: #a81a27;
    transform: scale(1.05);
}

.new-cars-txt .price {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
}

/* General Styles for Featured Cars */
.single-featured-cars {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s;
}

.single-featured-cars.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.single-featured-cars:hover {
    background-color: #ffdddd;
}

.single-featured-cars.clicked {
    background-color: #E52421; /* Red background on click */
    color: #fff; /* White text color */
}

.single-featured-cars.clicked h2 a {
    color: #fff; /* Ensure link color changes as well */
}

/* Adjustments for making all boxes uniform */
.featured-cars-content .row > div {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.single-featured-cars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Ensure images are contained within their divs */
.featured-cars-img img {
    max-width: 100%;
    border-radius: 10px;
}

/* Adding a bit of spacing between elements */
.featured-cars-content .row > div {
    margin-bottom: 20px;
}

/* Additional styles for better UI/UX */
.featured-cars-txt h2 a {
    color: #222323;
    transition: color 0.3s;
}

.featured-cars-txt h2 a:hover {
    color: #E52421; /* Red color on hover */
}

.featured-cars-txt p {
    margin-top: 10px;
    text-align: center;
}

/* Styles for Call to Action links */
.cta-link {
    color: #E52421;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #E52421;
}


/* Animation on Scroll */
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.single-featured-cars {
    animation: fadeInUp 0.5s ease-in-out both;
    opacity: 0;
}

.single-featured-cars.is-visible {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .single-featured-cars {
        margin-bottom: 20px;
    }

    .featured-cars-txt h2 a {
        font-size: 16px;
    }

    .featured-cars-txt h3 {
        font-size: 20px;
    }

    .featured-cars-txt p {
        font-size: 12px;
    }
}

.featured-cars .featured-cars-txt p {
    font-size: 16px;
    color: #222323;
}

.featured-cars .featured-cars-txt h3 {
    color: #E52421;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Clients Say Section */
.testimonial-img img {
    width: 100%; /* Asegúrate de que la imagen ocupe todo el ancho del contenedor */
    height: auto; /* Mantén la proporción de la imagen */
    border-radius: 15px; /* Bordes redondeados */
}

.single-testimonial-box {
    max-width: 350px; /* Ajusta según sea necesario */
    margin: 0 auto;
}

.testimonial-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-img {
    width: 150px; /* Ajusta el tamaño según sea necesario */
    height: 150px; /* Mantén el mismo valor para ancho y alto para hacerla cuadrada */
    overflow: hidden; /* Oculta cualquier contenido que se desborde del contenedor */
    border-radius: 15px; /* Bordes redondeados */
    margin-bottom: 15px; /* Espacio entre la imagen y el texto */
}

/* Brand Section */
.brand {
    padding: 60px 0;
    background: #f4f4f4;
}

.brand .brand-area {
    text-align: center;
}

.brand .brand-item .item img {
    width: auto;
    max-width: 100px;
    height: auto;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #222323, #222323);
    color: #fff;
    padding: 60px 0;
}

.contact .footer-top {
    padding-bottom: 40px;
}

.contact .single-footer-widget {
    margin-bottom: 20px;
    text-align: center;
}

.contact .single-footer-widget h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact .single-footer-widget ul li {
    margin-bottom: 10px;
}

.contact .single-footer-widget ul li a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.contact .single-footer-widget ul li a:hover {
    color: #E52421;
}

.contact .slides-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact .slides-form input,
.contact .slides-form textarea {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #222323;
}

.contact .slides-form input::placeholder,
.contact .slides-form textarea::placeholder {
    color: #bbb;
}

.contact .slides-form .button.red {
    background-color: #cc2032;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s;
}

.contact .slides-form .button.red:hover {
    background-color: #a81a27;
}

/* Panel Bottom */
.panel.bottom {
    background-color: #222323;
    text-align: center;
    padding: 10px 0;
}

.center a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.center a img {
    height: 21px;
    vertical-align: middle;
    margin-left: 5px;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #E52421;
}

#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background: #222323;
    border: 1px solid #222323;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 2;
}

#scroll-Top .return-to-top:hover {
    background: #fff;
    color: #222323;
    border: 1px solid #222323;
}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes example {
    0% { bottom: 0px; }
    100% { bottom: 7px; }
}

/* Custom styles for modal and featured cars */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slide-down 0.4s ease;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes slide-down {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.single-featured-cars:hover {
    background-color: #f8d7da;
    transition: background-color 0.3s;
}

.cta-link {
    color: #007bff;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
}

 /* Start Cuadro de Precios Nice */
/* Start Cuadro de Precios Nice */
.intro-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background-color: #f4f4f4;
    gap: 20px; /* Espacio entre las tarjetas */
}

.intro-card, .membership-card {
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    max-width: 100%;
    flex: 1;
}

.intro-card {
    background-color: #222323;
    color: #fff;
}

.intro-card .status {
    display: inline-block;
    background-color: #E52421;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.intro-card h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-card .description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.intro-card .buttons button {
    background-color: #1D1D1B;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intro-card .buttons button::after {
    content: '-->';
    margin-left: auto;
}

.membership-card {
    background-color: #fff;
    color: #222323;
}

.membership-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.toggle-switch {
    position: relative;
    width: 100%;
}

.toggle-switch input {
    display: none;
}

.toggle-switch label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: white;
    border-radius: 20px;
    padding: 5px;
    width: 100%;
    justify-content: space-between;
    position: relative;
    height: 40px; /* Altura del botón deslizante */
}

.toggle-switch .toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.toggle-switch .toggle-standard, .toggle-switch .toggle-pro {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 50%; /* Cada opción ocupa la mitad del espacio */
    justify-content: center;
}

.toggle-switch .toggle-standard {
    background-color: white;
    color: #222323;
}

.toggle-switch .toggle-pro {
    background-color: #E52421;
    color: #222323;
}

.toggle-switch input:checked + label .toggle-standard {
    background-color: #E52421;
    color: #222323;
}

.toggle-switch input:checked + label .toggle-pro {
    background-color: white;
    color: #222323;
}

.toggle-switch .toggle-pro img {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.membership-details h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.membership-details .sub-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.membership-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.membership-details ul li {
    margin-bottom: 0.5rem;
}

.membership-details button {
    background-color: #E52421;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.membership-details a {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #00f;
    text-decoration: none;
}

.intro-card .decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: #00f;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
    .intro-card-container {
        flex-direction: column;
        align-items: center;
    }

    .intro-card, .membership-card {
        max-width: 350px;
        width: 100%;
        max-height: 400px; /* Añade la altura máxima deseada */
        overflow: auto; /* Añade scroll si el contenido excede la altura máxima */
    }
}

@media (max-width: 1199px) {
    .welcome-hero-txt h2 {
        font-size: 40px;
    }
    .welcome-btn.model-search-btn {
        margin-left: 28px;
    }
    .featured-cars-img {
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
    nav.navbar.bootsnav .navbar-collapse.collapse.in {
        padding-bottom: 30px;
    }
    nav.navbar.bootsnav {
        background-color: #222323;
    }
    .wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a {
        padding: 18px 0px;
    }
    nav.navbar.bootsnav .navbar-brand {
        padding: 25px;
    }
    nav.navbar.bootsnav ul.nav > li > a {
        padding: 15px 0px;
        border: transparent;
    }
}

@media (max-width: 991px) {
    .welcome-hero-txt h2 {
        line-height: 1.6;
    }
    .model-search-content .col-sm-12 {
        padding: 0 40px;
    }
    .single-model-search:last-child {
        margin-bottom: 30px;
    }
    .welcome-btn.model-search-btn {
        margin: 0;
    }
    .single-new-cars-item {
        max-width: 450px;
        margin: 0 auto;
    }
    .new-cars-txt {
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .single-service-item {
        max-width: 350px;
        margin: 30px auto;
    }
    .single-featured-cars {
        max-width: 350px;
        margin: 0 auto;
        max-height: 350px; /* Añade la altura máxima deseada */

    }
    .footer-social {
        text-align: left;
    }
    .footer-social a i {
        margin-right: 16px;
        margin-left: 0;
    }
    .hm-foot-email {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .single-testimonial-box {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .welcome-hero h2 {
        font-size: 30px;
    }
    .single-model-search h2 {
        font-size: 16px;
    }
}

@media (max-width: 440px) {
    .welcome-hero-txt h2 {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (max-width: 399px) {
    .testimonial-carousel .col-sm-3,
    .testimonial-carousel .col-xs-12 {
        width: 260px;
    }
    .single-service-item h2 a {
        line-height: 1.5;
    }
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 350px) {
    nav.navbar.bootsnav .navbar-toggle {
        margin-right: -25px;
        left: -10px;
    }
    nav.navbar.bootsnav .navbar-brand {
        padding: 25px 0;
        font-size: 20px;
    }
    .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,
    .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,
    .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {
        padding: 25px 0px;
    }
}
/* End Cuadro de Precios Nice */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
header {
    background: #E52421;
    color: white;
    padding: 1em 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .container h1 {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

header nav ul li a:hover {
    background: #ffffff;
    color: #333;
}

.contact-button {
    background-color: #222323;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-left: 20px;
}

.contact-button:hover {
    background-color: #a81a27;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Design Section */
.brand-design {
    background: url('assets/images/brand-design-bg.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.brand-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.brand-design .content {
    position: relative;
    z-index: 1;
}

.brand-design h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.brand-design p {
    font-size: 1.5em;
    margin-top: 0;
}

/* Specialization and Design Revisions Sections */
.specialization, .design-revisions {
    padding: 40px 20px;
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

/* Alternating Content Layout */
.specialization:nth-child(even) .content,
.design-revisions:nth-child(even) .content {
    flex-direction: row-reverse;
}

.specialization .content, .design-revisions .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specialization .text, .design-revisions .text {
    width: 50%;
    padding: 20px;
}

.specialization .text h2, .design-revisions .text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.specialization .text ul, .design-revisions .text ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

.specialization .text ul li, .design-revisions .text ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.specialization .image, .design-revisions .image {
    width: 50%;
    padding: 20px;
}

.specialization .image img, .design-revisions .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .specialization .content, .design-revisions .content {
        flex-direction: column;
    }

    .specialization .text, .design-revisions .text,
    .specialization .image, .design-revisions .image {
        width: 100%;
        padding: 10px;
    }

    .specialization .text ul, .design-revisions .text ul {
        padding-left: 40px;
    }
}

/* Footer Section */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
 }

footer p {
    margin: 0;
    font-size: 1.1em;
}

/* Footer Section */
/* Footer Section */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
 }

footer p {
    margin: 0;
    font-size: 1.1em;
}

/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Section */
.site-header {
    background-color: var(--primary-color);
    padding-top: 12px;
    padding-bottom: 12px;
  }

/*Inicio de Estudio de Publicidad*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

 

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2em;
    justify-content: center;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: white;
    color: #333;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header nav ul li a img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

header nav ul li a:hover {
    background: #E52421;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        gap: 1em;
    }
}
/*Fin de Estudio de Publicidad*/

/*Inicio barra debajo de headerd*/
.free-shipping-section .container-fluid {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Roboto', sans-serif;
    padding: 4px 0; /* Ajuste del padding */
}

.free-shipping-section .row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.free-shipping-section .col-md-4 {
    flex: 1;
    text-align: center;
    padding: 10px; /* Ajuste del padding para mayor espacio */
    font-size: 18px;
    font-weight: 600;
}

.free-shipping-section .col-md-4 i {
    color: #E52421;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .free-shipping-section .col-md-4 {
        flex: 1 1 100%;
        margin-bottom: 10px; /* Ajuste del margin-bottom para mayor espacio entre elementos */
    }
}
/*Fin barra debajo de headerd*/

/*Start frase*/
/* Intro Section */
.intro-section {
    background: #e0e0e0;
    padding: 40px 0;
    text-align: center;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    font-size: 3em;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.intro-text .highlight {
    color: #E52421;
    font-weight: bold;
    display: inline-block;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-text {
        font-size: 2em;
    }
}
/*Inicio de frase*/

/*Inicio del nos encantaria trabajar con notoros*/
footer {
    position: relative;
    color: white;
    text-align: center;
    padding: 3em 0;
    overflow: hidden;
}

footer .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer p {
    font-size: 1.5em;
    margin: 0;
    font-weight: bold;
}

footer .links {
    margin-top: 1em;
}

footer .links a {
    color: #a81a27; /* green color */
    text-decoration: none;
    margin: 0 1em;
    font-size: 1em;
}

footer .links a:hover {
    text-decoration: underline;
}