* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    z-index: 1; /* Asegura que el navbar esté sobre el SVG */
    position: relative; /* Necesario para que z-index funcione */
}

.navbar .logo {
    display: flex;
    color: #0A84FF;
    font-size: 24px;
    font-weight: bold;
}

.navbar .logo span {
    color: #0A84FF;
}

.menu {
    display: flex;
    gap: 20px;
}

.apk {
    display: block;
}

.menu #android {
    display: block;
}

.menu a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.menu a.active {
    text-decoration: underline;
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons button {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid white;
    background: transparent;
    color: white;
}

.buttons .publish {
    background-color: #ff4b2b;
    color: white;
    border: none;
    transition: all 0.3s ease-in-out; /* Agregamos animación */
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.2);
}

.buttons .publish:hover {
    background-color: #e03e1e;
    color: #ffffff;
    border: 1px solid white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    color: white;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-text p span {
    font-size: 1.2rem;
    font-weight: 900;
}

.hero-image {
    max-width: 50%;
    height: 300px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.hero-image img {
    width: 100%;
}

.cta-button {
    background-color: #ff4b2b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #e03e1e;
    transform: scale(1.05);
}

.reassurance {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007bff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Kühl-Logger Section */
.kuhl-logger {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.kuhl-logger-image {
    max-width: 50%;
    height: 300px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.kuhl-logger-image:hover {
    transform: translateY(-5px);
    transform: scale(1.1);
}

.kuhl-logger-image img {
    width: 100%;
}

.kuhl-logger-text {
    width: 50%;
}

.kuhl-logger-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #007bff;
}

.kuhl-logger-text p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.kuhltrack p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.kuhl-logger-text span {
    font-size: 1.2rem;
    font-weight: 700;
}

.kuhltrack span {
    font-size: 1.2rem;
    font-weight: 700;
}

.kuhl-logger-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.kuhltrack ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 40px;
    background: #fff;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #007bff;
}

.steps {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.step {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* Platform Features Section */
.platform-features {
    padding: 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.platform-features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #007bff;
}

.feature-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 50px;
    height: 50px;
    background-color: #d3d3d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.svg {
    width: 60%;
    height: 60%;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
}

.plataforma {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.plataformaimg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(175px, 1fr));
    max-width: 50%;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    gap: 32px;
}

.plataformaimg img:hover {
    transition: transform 0.3s;
    transform: translateY(-5px);
    transform: scale(2);
}

.plataformaimg img {
    width: 270px;
    height: auto;
}

.plataforma h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #007bff;
}

/* FAQ Section */
.faq {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    color: #007bff;
}

.faqcontainer {
    display: flex;
    flex-direction: row;
}

.faqleft {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.faqright {
    display: flex;
    width: 30%;
    justify-content: space-around;
}

.faqright img {
    object-fit: contain;
    width: 100%;
}

.faq-item {
    text-align: left;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Form Section */
.contact {
    padding: 60px 40px;
    background: #007bff;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background: #ff4b2b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background: #e03e1e;
}

/* Footer */
.footer {
    grid-row-gap: 40px;
    background-color: #007bff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
}
  
.columns-4 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    padding-left: 40px;
    text-decoration: none;
    display: flex;
}
  
.column-11 {
    grid-row-gap: 0px;
    flex-direction: column;
    width: 100%;
    max-width: 225px;
    text-decoration: none;
    display: flex;
}
  
.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-wrapper p {
    color: white;
    font-size: 1rem;
}

.logo-3 {
    width: 100%;
    height: auto;
    text-decoration: none;
    display: flex;
    position: relative;
    top: 0;
}

.textocorreo {
    padding-top: 8px;
    color: white;
}
  
.textocorreo p {
    justify-self: right;
}

.small-columns {
    align-items: center;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: row;
}

.small {
    width: 100%;
}
  
.logo-container {
    width: 80%;
}

.logo-container img {
    width: 100%;
}

.column-12 {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}
  
.content-5 {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}
  
.text-14 {
    color: #d3d3d3;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
}
  
.footer-links {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    display: flex;
}

.small-columns-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    margin-top: 10px;
}

.apk-link {
    margin-top: 10px;
    text-align: center;
}

.apk-link a {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-decoration: underline;
}

  
.link {
    color: #212121;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

.form {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.input-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.form-block-label {
    color: #d3d3d3;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.form-text-input {
    grid-column-gap: 8px;
    color: black;
    background-color: white;
    border: 1px solid #00C8FF;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 42px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    display: flex;
}

.form-text-input::placeholder, .text-12 {
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.form-text-input-2 {
    grid-column-gap: 8px;
    color: black;
    background-color: white;
    border: 1px solid #00C8FF;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 42px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    display: flex;
}

.form-text-input-2::placeholder {
    color: black;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.form-textarea {
    grid-column-gap: 8px;
    color: black;
    background-color: white;
    border: 1px solid #00C8FF;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'roboto', Arial, Helvetica, sans-serif;
    line-height: 140%;
    display: flex;
}

.form-textarea::placeholder {
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.form-button {
    background-color: #ff973d;
    border-radius: 13px;
    width: 100%;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
    display: flex;
}

.form-button:hover {
    background-color: #FF6600;
    cursor: pointer;
}

.hero- {
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}


.hero-t h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.smallcolumns {
    display: flex;
    justify-self: center;
    gap: 16px;
    width: 100%;
    max-width: 350px;
}

.small1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 150px;
}

.logo-container2,
.logo-container1 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container2 img,
.logo-container1 img {
    width: 100%;
    max-width: 120px;
}

.nfc-warning {
    margin-top: 20px;
    font-size: 14px;
    color: yellow;
    text-align: center;
}

.instructions {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-t .instittle h1 {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
}

.containerbox {
    width: 620px;
    height: auto;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    margin: 16px;
    border: 1px solid #d3d3d3;
    border-radius: 24px;
    text-align: center;
}

.containerbox h3 {
    color: black;
    font-size: 1rem;
}

.containerbox h2 {
    color: black;
    font-size: 1.3rem;
}

.containerbox p {
    color: black;
    font-size: 0.8rem;
}

.containerbox img {
    width: 175px;
    height: 350px;
    display: block;  /* Hace que la imagen ocupe el ancho disponible */
    margin: 0 auto;  /* Centra la imagen horizontalmente */
}

.troubleshooting p {
    color: yellow;
    font-size: 1rem;
    text-align: center;
}

.picture {
    width: 225px;
    height: 350px;
    display: block;  /* Hace que la imagen ocupe el ancho disponible */
    margin: 0 auto;  /* Centra la imagen horizontalmente */
}

.picture img {
    width: 225px;
    height: 350px;
    display: block;  /* Hace que la imagen ocupe el ancho disponible */
    margin: 0 auto;  /* Centra la imagen horizontalmente */
}

.faqright {
    display: flex;
    width: 33%;
    justify-content: space-around;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #ffffff00;
  margin: 10% auto;
  padding: 0;
  border-radius: 10px;
  width: 100%;
  max-width: 720px;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px 10px 0 0;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

@media screen and (max-width:991px) {

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #001544;
        text-align: center;
        padding: 10px 0;
    }
    .apk {
        display: block;
    }

    .menu #android {
        display: block;
    }

    .menu a {
        padding: 10px;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .menu.show {
        display: flex;
        background: white;
    }

    .buttons {
        display: none;
    }

    .plataforma {
        padding: 60px 40px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .plataformaimg img {
        width: 270px;
        height: auto;
        margin: auto;
    }

    .plataformaimg {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: repeat(auto-fit, minmax(175px, 1fr));
        max-width: 100%;
        height: 100%;
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .plataformaimg img:hover {
        transform: none;
        pointer-events: none;
    }

      .modal-content {
    width: 90%;
    }

    .modal-content iframe {
        height: 400px;
    }
}


@media screen and (max-width:767px) {
    
    .hero {
        background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
        color: white;
        padding: 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }


    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        align-content: end;
        height: auto;
    }

    .kuhl-logger {
        padding: 30px 40px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .kuhl-logger-text {
        width: 100%;
    }

    .kuhl-logger-image {
        height: auto;
        max-width: 100%;
    }

    .kuhl-logger-image img {
        width: 80%;
    }

    .steps {
        display: flex;
        flex-direction: column;
    }

    .feature-list {
        flex-direction: column;
    }

    .columns-4 {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1920px;
        padding-left: 0px;
        text-decoration: none;
        display: flex;
    }

    .textocorreo {
        font-size: 0.7rem;
    }

    .platform-features {
        padding: 20px 40px;
    }

    .faq {
        padding: 20px 40px;
    }

    .logo-3 {
        width: 80%;
    }

    .hero-t h2 {
        font-size: 24px;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .smallcolumns {
        display: flex;
        justify-content: space-around;
        gap: 16px;
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .small1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 150px;
    }
    
    .logo-container2,
    .logo-container1 {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .logo-container2 img,
    .logo-container1 img {
        width: 100%;
        max-width: 175px;
    }

    .nfc-warning {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 14px;
        color: yellow;
        text-align: center;
    }

    .instructions {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .hero-t .instittle h1 {
        font-weight: 800;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 32px;
    }

    .containerbox {
        width: 90%;
        height: auto;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        padding: 8px 16px;
        margin: 16px;
        border: 1px solid #d3d3d3;
        border-radius: 24px;
        text-align: center;
    }

    .containerbox h3 {
        color: black;
        font-size: 1rem;
    }

    .containerbox h2 {
        color: black;
        font-size: 1.3rem;
    }

    .containerbox p {
        color: black;
        font-size: 0.8rem;
    }
    
    .containerbox img {
        width: 175px;
        height: 350px;
        display: block;  /* Hace que la imagen ocupe el ancho disponible */
        margin: 0 auto;  /* Centra la imagen horizontalmente */
    }

    .troubleshooting p {
        color: yellow;
        font-size: 1rem;
        text-align: center;
    }

    .picture {
        width: 225px;
        height: 350px;
        display: block;  /* Hace que la imagen ocupe el ancho disponible */
        margin: 0 auto;  /* Centra la imagen horizontalmente */
    }

    .picture img {
        width: 225px;
        height: 350px;
        display: block;  /* Hace que la imagen ocupe el ancho disponible */
        margin: 0 auto;  /* Centra la imagen horizontalmente */
    }

    .faqright {
        display: none;
        width: 33%;
        justify-content: space-around;
    }

    .phoneonly {
        background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
        color: white;
        padding: 40px 20px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .ponply {
        display: none;
        justify-content: center;
        align-items: center;
    }
    
    .ponply h2 {
        display: none;
        color: white;
        font-size: 3rem;
    }

    .logo-wrapper p {
        color: white;
        font-size: 0.8rem;
    }

    
    .logo-container img {
        width: 100px;
        height: auto;
    }

      .modal-content {
    width: 95%;
    }

    .modal-content iframe {
        height: 350px;
    }

    .close {
    font-size: 24px;
    }
}

@media screen and (max-width: 479px) {
    
    .hero {
        background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
        color: white;
        padding: 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-text p span {
        font-size: 1rem;
    }

    .hero-image {
        align-content: end;
        height: auto;
    }

    .cta-button {
        background-color: #ff4b2b;
        color: white;
        padding: 6px 15px;
        border: none;
        border-radius: 20px;
        font-size: 0.7rem;
        cursor: pointer;
        transition: transform 0.3s, background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #e03e1e;
        transform: scale(1.05);
    }
    
    .features h2 {
        font-size: 1.3rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .kuhl-logger {
        padding: 20px 20px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .kuhl-logger-text {
        width: 100%;
    }

    .kuhl-logger-image {
        height: auto;
        max-width: 100%;
    }

    .kuhl-logger-image img {
        width: 80%;
    }

    .kuhl-logger-text h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #007bff;
    }

    .kuhl-logger-text p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .kuhl-logger-text span {
        font-size: 1rem;
        font-weight: 700;
    }

    .kuhl-logger-text ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 16px;
        font-size: 0.8rem;
    }

    .how-it-works {
        padding: 20px 20px;
        background: #fff;
        text-align: center;
    }

    .how-it-works h2 {
        font-size: 1.3rem;
        margin-bottom: 40px;
        color: #007bff;
    }

    .steps {
        display: flex;
        flex-direction: column;
    }

    .step h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 0.8rem;
        color: #666;
    }

    .platform-features h2 {
        font-size: 1.3rem;
        margin-bottom: 40px;
        color: #007bff;
    }

    .feature-box h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-box p {
        font-size: 0.8rem;
        color: #666;
    }



    .faq h2 {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: #007bff;
    }

    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .faq-item p {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .feature-list {
        flex-direction: column;
    }

    .columns-4 {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1920px;
        padding-left: 0px;
        text-decoration: none;
        display: flex;
    }

    .textocorreo {
        display: none;
    }

    .platform-features {
        padding: 20px 40px;
    }

    .faq {
        padding: 20px 40px;
    }

    .logo-wrapper p {
        color: white;
        font-size: 0.7rem;
    }

    .logo-container img {
        width: 80px;
        height: auto;
    }

    .plataformaimg img {
        width: 230px;
        height: auto;
    }

    .small-columns {
        align-items: center;
        width: 100%;
        max-width: 80px;
        display: flex;
        flex-direction: column;
    }

    .apk-link a {
        font-size: .7rem;
        color: white;
        font-weight: 500;
        text-decoration: underline;
    }

    .modal-content {
    width: 98%;
    margin: 10% auto;
    }

    .modal-content iframe {
    height: 250px;
    }

    .close {
    font-size: 22px;
    right: 10px;
    top: 8px;
    }
}