:root {
    --primary-color: #ff7200;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #34495e;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --light-color: #ffffff; 
    --dark-gradient: linear-gradient(to right, #2c3e50, #34495e);
}

.newsletter input:disabled {
    background-color: rgba(255, 255, 255, 0.05);
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.newsletter input:disabled::placeholder {
    color: #777;
}

.newsletter button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
}

.newsletter button:disabled:hover {
    background-color: #cccccc;
    transform: none !important;
}

.newsletter-disabled-message {
    font-size: 0.8rem;
    color: #ff7200;
    font-style: italic;
    margin-top: 8px;
    text-align: center;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.newsletter:hover input:disabled,
.newsletter:hover button:disabled {
    box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--dark-gradient);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .header-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.mobile-logo .header-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-menuderoulant {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 0;
}

.mobile-menuderoulant li {
    width: 90%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-menuderoulant li:last-child {
    border-bottom: none;
}

.mobile-menuderoulant > li > a {
    color: var(--light-color);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menuderoulant > li > a:hover {
    color: var(--primary-color);
}

.mobile-menuderoulant > li > a i {
    margin-left: 10px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-menuderoulant > li.active > a i {
    transform: rotate(180deg);
}

.mobile-menuderoulant > li.active > a {
    color: var(--primary-color);
}

.mobile-nav .sousmenu {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    margin: 5px 0;
    border-radius: 5px;
}

.mobile-nav .sousmenu.active {
    display: block;
}

.mobile-nav .sousmenu li {
    border-bottom: none;
    width: 100%;
}

.mobile-nav .sousmenu li a {
    color: var(--light-color);
    padding: 12px 20px;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 40px;
    transition: background-color 0.3s ease;
    display: block;
}

.mobile-nav .sousmenu li a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.mobile-nav .sousmenu li.active-menu-item a {
    background-color: rgba(255, 114, 0, 0.2);
    border-left: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.page-header {
    width: 100%;
    background: var(--dark-gradient);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.header-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.header-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.header-nav ul {
    display: flex;
    gap: 35px;
}
.header-nav ul li{
    position: relative;
}

.header-nav ul li a {
    color: var(--light-color);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.header-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-nav ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header-nav ul li.active > a {
    color: var(--primary-color);
}
.header-nav ul li.active > a::after {
    transform: translateX(-50%) scaleX(1);
}

.header-nav .sousmenu li.active-menu-item a {
    background-color: rgba(255, 114, 0, 0.1);
    border-left: 3px solid var(--primary-color);
}

.header-nav .sousmenu {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    min-width: 220px;
    z-index: 1;
    border-top: 4px solid var(--primary-color);
    padding: 10px 0;
    top: 100%;
    left: 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding-top: 15px;
}

.header-nav .menuderoulant li:hover > .sousmenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.header-nav .sousmenu li a {
    color: var(--light-color);
    padding: 12px 25px;
    display: block;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.header-nav .sousmenu li a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.services-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('Photo/ecantidservices.png') no-repeat center center/cover;
    color: var(--light-color);
    padding: 150px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 114, 0, 0.1);
    border-radius: 50%;
    animation: float1 15s infinite ease-in-out;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    animation: float2 18s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, -20px); }
}


.services-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.7rem;
    max-width: 950px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    font-weight: 400;
}

.services-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.services-hero .hero-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    font-size: 2.2rem;
    animation: bounce 2s infinite;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.services-grid-section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.service-card i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card .btn-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-card .btn-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.why-choose-services {
    background-color: var(--background-light);
    padding: 100px 20px;
    text-align: center;
}

.why-choose-services .section-title {
    color: var(--text-dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.advantage-item {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.1);
}

.advantage-item i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advantage-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.advantage-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    background: var(--dark-gradient);
    color: var(--light-color);
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.cta-section p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.5;
    font-weight: 300;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cta-section .btn-cta:hover {
    background-color: #ff5b00;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.faq-section {
    padding: 100px 20px;
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-color);
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    background-color: var(--background-light);
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: #e5e5e5;
    color: var(--primary-color);
}

.faq-question i {
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: var(--light-color);
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px 30px;
}

footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 70px 20px 25px;
    font-size: 0.98rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1300px;
    margin: 0 auto 50px auto;
    text-align: left;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    margin-bottom: 25px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.55rem;
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-section p, .footer-section ul {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.footer-logo .logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.schedule-list li {
    margin-bottom: 10px;
    color: #ccc;
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex-grow: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.15);
    color: var(--light-color);
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter button {
    padding: 14px 22px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter button:hover {
    background-color: #e06a00;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

.footer-bottom p span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-legal-links a {
    color: #aaa;
    margin: 0 18px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .header-content {
        padding: 0 15px;
    }
    .header-nav ul {
        gap: 25px;
    }
    .header-nav ul li a {
        font-size: 1.05rem;
    }

    .services-hero h1 {
        font-size: 4.2rem;
    }
    .services-hero p {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .service-card {
        padding: 35px;
    }
    .service-card h3 {
        font-size: 2.2rem;
    }
    .cta-section h2 {
        font-size: 3.2rem;
    }
    .cta-section p {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .page-header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .services-hero {
        padding: 100px 15px;
        min-height: 500px;
        margin-top: 75px;
    }
    .services-hero h1 {
        font-size: 3.5rem;
    }
    .services-hero p {
        font-size: 1.2rem;
    }
    .services-hero .hero-cta {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .service-card {
        padding: 30px;
    }
    .service-card h3 {
        font-size: 2rem;
    }
    .service-card p {
        font-size: 1rem;
    }

    .advantage-item {
        padding: 30px;
    }
    .advantage-item h3 {
        font-size: 1.7rem;
    }
    .advantage-item i {
        font-size: 3.5rem;
        width: 70px;
        height: 70px;
    }

    .cta-section h2 {
        font-size: 2.8rem;
    }
    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .cta-section .btn-cta {
        font-size: 1.2rem;
        padding: 15px 35px;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 18px 25px;
    }
    .faq-answer {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-section h3 {
        font-size: 1.4rem;
    }
    .footer-logo {
        justify-content: center;
    }
    .newsletter {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .footer-legal-links a {
        margin: 0 10px;
    }
}

@media (min-width: 1025px) {
    .mobile-header {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .page-header {
        display: block;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 3rem;
    }
    .services-hero p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .service-card {
        padding: 25px;
    }
    .service-card h3 {
        font-size: 1.8rem;
    }
    .service-card i {
        font-size: 4rem;
    }
    .advantage-item h3 {
        font-size: 1.5rem;
    }
    .advantage-item i {
        font-size: 3rem;
        width: 60px;
        height: 60px;
    }
    .cta-section h2 {
        font-size: 2.4rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .cta-section .btn-cta {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
    .footer-logo .logo {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-logo .header-title {
        font-size: 1.5rem;
    }
    .mobile-logo .header-logo-img {
        width: 40px;
        height: 40px;
    }
    .services-hero {
        padding: 80px 10px;
        min-height: 400px;
    }
    .services-hero h1 {
        font-size: 2.5rem;
    }
    .services-hero p {
        font-size: 1rem;
    }
    .services-hero .hero-cta {
        font-size: 1rem;
        padding: 10px 25px;
    }
    .scroll-down {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .service-card {
        padding: 20px;
    }
    .service-card h3 {
        font-size: 1.6rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
    .service-card i {
        font-size: 3.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .footer-section h3 {
        font-size: 1.2rem;
    }
    .footer-logo .logo {
        font-size: 1.8rem;
    }
    .newsletter input, .newsletter button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}