/* 
* eSIM España Info - Main Stylesheet
* Author: eSIM España Info
* Version: 1.0
*/

/* 
========================================
Base Styles & CSS Reset
========================================
*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #222222;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #34A7C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2A8A9E;
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

button, .button {
    cursor: pointer;
    border: none;
    border-radius: 0.4rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

/* 
========================================
Container & Layout
========================================
*/
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background-color: #34A7C1;
    margin: 1.5rem auto 0;
    border-radius: 0.2rem;
}

/* 
========================================
Header & Navigation
========================================
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 5rem;
    transition: height 0.3s ease;
}

.scrolled .logo {
    height: 4rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #34A7C1;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.4rem;
    color: #333333;
    cursor: pointer;
    padding: 0.5rem;
}

/* 
========================================
Hero Section
========================================
*/
.hero-section {
    padding: 12rem 0 6rem;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 60rem;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #222222;
}

.hero-subtitle {
    font-size: 2rem;
    color: #555555;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-image {
    max-width: 50rem;
    margin: 0 auto;
}

.hero-img {
    border-radius: 0.8rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* 
========================================
Info Section (What is eSIM)
========================================
*/
.info-section {
    background-color: #FFFFFF;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.info-text {
    flex: 1 1 50rem;
}

.info-image {
    flex: 1 1 30rem;
    text-align: center;
}

.section-img {
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 1.4rem;
    color: #777777;
    text-align: center;
    margin-top: 1rem;
}

.tech-specs {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #F9F9F9;
    border-radius: 0.8rem;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.spec-item {
    flex: 1 1 20rem;
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.spec-item i {
    font-size: 3rem;
    color: #34A7C1;
    margin-bottom: 1.5rem;
}

.spec-item h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.comparison-section {
    margin-top: 5rem;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.device-support {
    margin-top: 5rem;
}

.device-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.device-category {
    flex: 1 1 20rem;
    padding: 2rem;
    background-color: #F9F9F9;
    border-radius: 0.8rem;
}

.device-category h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #34A7C1;
}

.device-category ul {
    margin-top: 1.5rem;
}

.compatibility-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #FFF8E1;
    border-left: 0.4rem solid #F7B633;
    border-radius: 0.4rem;
}

/* 
========================================
Benefits Section
========================================
*/
.benefits-section {
    background-color: #F9F9F9;
}

.benefits-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.benefit-card {
    flex: 1 1 25rem;
    padding: 2.5rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 167, 193, 0.1);
    color: #34A7C1;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.benefit-icon i {
    font-size: 3rem;
}

.benefit-card h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.use-cases {
    margin-top: 5rem;
}

.use-case {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.05);
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
    background-color: rgba(247, 182, 51, 0.1);
    color: #F7B633;
    border-radius: 50%;
}

.use-case-icon i {
    font-size: 2.5rem;
}

.use-case h4 {
    margin-bottom: 1rem;
    color: #222222;
}

.testimonials {
    margin-top: 5rem;
}

.testimonial-carousel {
    margin-top: 3rem;
}

.testimonial {
    padding: 3rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.testimonial-content {
    position: relative;
    padding: 0 2rem;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 5rem;
    color: rgba(52, 167, 193, 0.2);
    position: absolute;
    line-height: 1;
}

.testimonial-content::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-content::after {
    bottom: -4rem;
    right: -1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: #34A7C1;
}

.author-info p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #777777;
}

/* 
========================================
Activation Section
========================================
*/
.activation-section {
    background-color: #FFFFFF;
}

.activation-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 5rem;
}

.activation-text {
    flex: 1 1 50rem;
}

.activation-image {
    flex: 1 1 30rem;
}

.activation-steps {
    margin-top: 5rem;
}

.step-container {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    background-color: #34A7C1;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 2.4rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #34A7C1;
    margin-bottom: 1.5rem;
}

.troubleshooting {
    margin-top: 5rem;
    padding: 3rem;
    background-color: #F9F9F9;
    border-radius: 0.8rem;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 1.5rem;
    border: 0.1rem solid #E0E0E0;
    border-radius: 0.4rem;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #F5F5F5;
}

.accordion-header h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
}

.accordion-item.active .accordion-content {
    padding: 2rem;
    max-height: 100rem;
}

.esim-settings {
    margin-top: 5rem;
}

.settings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.setting-card {
    flex: 1 1 25rem;
    padding: 2.5rem;
    background-color: #F9F9F9;
    border-radius: 0.8rem;
    transition: transform 0.3s ease;
}

.setting-card:hover {
    transform: translateY(-0.5rem);
}

.setting-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background-color: rgba(52, 167, 193, 0.1);
    color: #34A7C1;
    border-radius: 50%;
}

.setting-icon i {
    font-size: 2.5rem;
}

.setting-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* 
========================================
Providers Section
========================================
*/
.providers-section {
    background-color: #F9F9F9;
}

.providers-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.major-providers,
.virtual-providers,
.international-providers {
    margin-bottom: 5rem;
}

.provider-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.provider-card {
    flex: 1 1 30rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.provider-card h4 {
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    background-color: #34A7C1;
    color: #FFFFFF;
}

.provider-details {
    padding: 2rem;
}

.provider-info p {
    margin-bottom: 1rem;
}

.provider-info p:last-child {
    margin-bottom: 0;
}

.provider-info p strong {
    color: #333333;
}

.comparison-table {
    margin-top: 5rem;
}

.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.green-icon {
    color: #27AE60;
}

.red-icon {
    color: #E74C3C;
}

.legal-requirements {
    margin-top: 5rem;
    padding: 3rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

.legal-content {
    margin-top: 2rem;
}

/* 
========================================
FAQ Section
========================================
*/
.faq-section {
    background-color: #FFFFFF;
}

.faq-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.faq-container {
    max-width: 90rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 0.1rem solid #E0E0E0;
    border-radius: 0.8rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #F9F9F9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F0F0F0;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 100rem;
}

/* 
========================================
Contact Section
========================================
*/
.contact-section {
    background-color: #F9F9F9;
}

.contact-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-form-container {
    flex: 1 1 50rem;
    padding: 3rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1 1 30rem;
    padding: 3rem;
    background-color: #FFFFFF;
    border-radius: 0.8rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 167, 193, 0.1);
    color: #34A7C1;
    border-radius: 50%;
    font-size: 1.8rem;
}

.contact-item p {
    margin-bottom: 0;
}

/* 
========================================
Footer
========================================
*/
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1 1 30rem;
}

.footer-logo-img {
    height: 5rem;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1 1 20rem;
}

.footer h3 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 1rem;
}

.footer a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact i {
    font-size: 1.8rem;
    color: #34A7C1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #AAAAAA;
    margin-bottom: 1rem;
}

/* 
========================================
Cookie Banner
========================================
*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 -0.3rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem 0;
    display: none;
}

.cookie-container {
    display: flex;
    flex-direction: column;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-text {
    margin-bottom: 2rem;
}

.cookie-text h3 {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* 
========================================
Cookie Modal
========================================
*/
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.cookie-modal-content {
    position: relative;
    background-color: #FFFFFF;
    max-width: 60rem;
    margin: 5rem auto;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: #777777;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: #333333;
}

.cookie-options {
    margin: 3rem 0;
}

.cookie-option {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #E0E0E0;
}

.cookie-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-checkbox input {
    width: 1.8rem;
    height: 1.8rem;
}

.cookie-checkbox label {
    font-weight: 600;
    font-size: 1.8rem;
}

.cookie-option p {
    margin-left: 2.8rem;
    margin-bottom: 0;
    color: #777777;
}

/* 
========================================
Policy Modal
========================================
*/
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.policy-content {
    position: relative;
    background-color: #FFFFFF;
    max-width: 80rem;
    margin: 5rem auto;
    padding: 4rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}

.close-policy {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: #777777;
    transition: color 0.3s ease;
}

.close-policy:hover {
    color: #333333;
}

.policy-date {
    color: #777777;
    font-style: italic;
    margin-bottom: 3rem;
}

.policy-text {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1.5rem;
}

.policy-text h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #34A7C1;
}

.policy-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* 
========================================
Success Modal
========================================
*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background-color: #FFFFFF;
    max-width: 50rem;
    margin: 15vh auto;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: #777777;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333333;
}

.success-message i {
    font-size: 5rem;
    color: #27AE60;
    margin-bottom: 2rem;
}

/* 
========================================
Scroll to Top Button
========================================
*/
.scroll-top-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: #34A7C1;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #2A8A9E;
    transform: translateY(-0.3rem);
}

/* 
========================================
Utilities
========================================
*/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

/* 
========================================
Media Queries
========================================
*/
/* Small Phones (320px - 480px) */
@media screen and (max-width: 480px) {
    html {
        font-size: 55%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding: 10rem 0 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .policy-content {
        padding: 3rem 2rem;
        margin: 2rem;
        width: auto;
    }
}

/* Medium Phones to Small Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        padding: 10rem 0 5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .benefit-card,
    .provider-card {
        flex: 1 1 calc(50% - 2rem);
    }
    
    .step {
        align-items: flex-start;
    }
    
    .policy-content {
        padding: 3rem;
        margin: 3rem;
        width: auto;
    }
}

/* All Mobile Devices (up to 768px) */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 7rem;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 90;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem;
    }
    
    .info-content,
    .activation-intro,
    .contact-content {
        flex-direction: column;
    }
    
    .info-image,
    .activation-image {
        order: -1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links,
    .footer-legal,
    .footer-contact {
        flex: 1 1 100%;
    }
}

/* Tablets to Small Laptops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .benefit-card,
    .provider-card {
        flex: 1 1 calc(33.333% - 2rem);
    }
    
    .policy-content {
        max-width: 70rem;
    }
}

/* Large Devices (1025px and up) */
@media screen and (min-width: 1025px) {
    .container {
        padding: 0 4rem;
    }
    
    .hero-section .container {
        display: flex;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }
    
    .hero-image {
        flex: 1;
    }
}

/* Adjustments for IntlTelInput Plugin */
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 99;
}