:root {
    --primary-color: #279785;
    --primary-dark: #248C85;
    --primary-light: #E8F5F4;
    --text-primary: rgb(0, 0, 0);
    --text-secondary: #717878;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 0 20px;
}

.navbar-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 16px 0;
}

.navbar-logo {
    align-items: center;
    display: flex;
    gap: 12px;
}

.logo-icon {
    height: 40px;
    width: 40px;
}

.logo-text {
    color: #00897b;
    font-size: 24px;
    font-weight: 600;
}

.navbar-menu {
    align-items: center;
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    margin: 0;
}

.menu-link {
    color: #00897b;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #00695c;
}

.navbar-actions {
    align-items: center;
    display: flex;
    gap: 16px;
}

.action-button {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-button--login {
    background-color: #f5f5f5;
    color: #424242;
}

.action-button--login:hover {
    background-color: #e0e0e0;
}

.action-button--register {
    background-color: #00897b;
    color: #ffffff;
}

.action-button--register:hover {
    background-color: #00695c;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    background-color: #00897b;
    border-radius: 2px;
    height: 3px;
    transition: all 0.3s ease;
    width: 25px;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 20px;
    }
}

.hero-section {
    align-items: center;
    background-color: var(--white);
    background-image: url('images/background-leafs.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 40px 20px;
    position: relative;
}

.hero-container {
    align-items: center;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.download-button {
    align-items: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: var(--primary-dark);
}

.download-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.button-text {
    display: inline-block;
}

.hero-image {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    max-width: 400px;
}

.phone-mockup {
    height: auto;
    max-width: 100%;
    width: 300px;
}

.benefits-section {
    background-color: #e0f2f1;
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
}

.benefits-container {
    margin: 0 auto;
    max-width: 1200px;
}

.benefits-title {
    color: #279785;
    font-family: 'Inter', sans-serif, bold;
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 50px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    row-gap: 70px;
    column-gap: 100px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    margin: 0 auto;
    max-width: 1200px;
}

.benefit-card {
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon {
    align-items: center;
    background-color: #279785;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 60px;
    justify-content: center;
    width: 60px;
}

.icon-symbol {
    font-size: 30px;
    line-height: 1;
}

.benefit-icon--alerts {
    background-color: #279785;
}

.benefit-icon--comparison {
    background-color: #279785;
}

.benefit-icon--free {
    background-color: #279785;
}

.benefit-icon--savings {
    background-color: #279785;
}

.benefit-content {
    flex: 1;
}

.benefit-text {
    color: #424242;
    font-family: 'Inter', sans-serif;
    font-size: 29px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 32px;
    }

    .benefit-text {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

.pricing-section {
    background-color: #e0f2f1;
    padding: 80px 20px;
}

.pricing-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
}

.pricing-card {
    background-color: #f7f7f7;
    border: 2px solid transparent;
    border-radius: 16px;
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: 400px;
    padding: 40px 30px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.plan-name {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-price {
    color: var(--text-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
}

.plan-features {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 0;
    text-align: center;
}

.plan-button {
    align-items: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    padding: 14px 24px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
}

.plan-button:hover {
    background-color: var(--primary-dark);
}

.plan-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-button {
        font-size: 14px;
        width: 100%;
    }

    .phone-mockup {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pricing-container {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .plan-price {
        font-size: 40px;
    }

    .price-amount {
        font-size: 40px;
    }
}

.faq-section {
    background-color: var(--primary-light);
    padding: 80px 20px;
}

.faq-title {
    color: var(--text-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.faq-container {
    margin: 0 auto;
    max-width: 800px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    width: 100%;
}

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

.faq-question[aria-expanded="true"] {
    background-color: #fafafa;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    color: var(--text-secondary);
    font-size: 14px;
    margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    display: none;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-answer.active {
        padding: 0 20px 16px 20px;
    }
}

.features-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.features-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.how-it-works-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.how-it-works-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
    background-color: var(--primary-light);
    border-radius: 18px;
    box-shadow: none;
    gap: 22px;
}

.slide-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.how-it-works-slide .app-screenshot {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.1));
}

.slide-content {
    max-width: 600px;
}

.features-heading {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.features-item {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .how-it-works-slide {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 30px;
        padding: 30px;
    }

    .slide-image-container {
        width: 400px;
        height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    .how-it-works-slide .app-screenshot {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .how-it-works-slide:nth-child(even) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 768px) {
  .how-it-works-slide {
    padding: 14px;
    gap: 12px;
    border-radius: 12px;
  }

  .how-it-works-slide .app-screenshot {
    max-width: 140px;
    width: 48%;
  }

  .slide-content {
    max-width: 92vw;
    padding: 0 8px;
  }

  .features-heading {
    font-size: 20px;
  }

  .features-item {
    font-size: 14px;
  }
}

.register-section {
    background-color: #ffffff; /* CAMBIO: Fondo blanco */
    padding: 80px 20px;
}

.register-container {
    align-items: center;
    display: flex;
    gap: 60px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.register-content {
    flex: 1;
    max-width: 500px;
}

.register-title {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.register-description {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.register-form-container {
    background-color: var(--primary-light); /* CAMBIO: Fondo azul claro para la tarjeta del formulario */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 450px;
    padding: 40px 35px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.form-input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #279785;
    outline: none;
}

.form-group--checkbox {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
}

.form-checkbox {
    accent-color: #279785;
    cursor: pointer;
    flex-shrink: 0;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.form-checkbox-label {
    color: #424242;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.form-checkbox:checked {
    background-color: #279785;
}

.form-submit-button {
    background-color: #279785;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-submit-button:hover {
    background-color: #248C85;
}

.form-submit-button:focus {
    outline: 2px solid #279785;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .register-section {
        padding: 60px 20px;
    }

    .register-container {
        flex-direction: column;
        gap: 40px;
    }

    .register-content {
        max-width: 100%;
        text-align: center;
    }

    .register-title {
        font-size: 28px;
    }

    .register-description {
        font-size: 16px;
    }

    .register-form-container {
        max-width: 100%;
        padding: 30px 25px;
    }

    .form-input {
        font-size: 16px;
    }

    .form-checkbox-label {
        font-size: 13px;
    }

    .form-submit-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}

.download-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.download-container {
    align-items: center;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.download-content {
    flex: 1;
    max-width: 600px;
}

.download-title {
    color: #279785;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.download-feature-item {
    align-items: center;
    display: flex;
    gap: 16px;
}

.feature-bullet {
    background-color: #279785;
    border-radius: 50%;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.feature-text {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.download-btn {
    align-items: center;
    background-color: #279785;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #248C85;
}

.download-btn:focus {
    outline: 2px solid #279785;
    outline-offset: 2px;
}

.download-btn-text {
    display: inline-block;
}

.download-image {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    max-width: 500px;
}

.download-illustration {
    height: auto;
    max-width: 100%;
    width: 450px;
}

@media (max-width: 768px) {
    .download-section {
        padding: 60px 20px;
    }

    .download-container {
        flex-direction: column;
        gap: 40px;
    }

    .download-content {
        max-width: 100%;
        text-align: center;
    }

    .download-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .download-features {
        gap: 20px;
        margin-bottom: 30px;
    }

    .download-feature-item {
        justify-content: center;
    }

    .feature-text {
        font-size: 18px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-btn {
        font-size: 14px;
        width: 100%;
    }

    .download-image {
        max-width: 100%;
    }

    .download-illustration {
        width: 350px;
    }
}

.footer-section {
    background-color: #222222;
    color: var(--white);
    padding: 40px 20px;
}

.footer-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-social {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 24px;
    justify-content: flex-start;
}

.social-link {
    align-items: center;
    color: var(--white);
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-icon {
    fill: currentColor;
    height: 32px;
    width: 32px;
}

.footer-center {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-link {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright-text {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-spacer {
    flex: 1;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social {
        gap: 20px;
    }

    .social-icon {
        height: 28px;
        width: 28px;
    }

    .footer-link {
        font-size: 13px;
    }

    .copyright-text {
        font-size: 12px;
    }

    .footer-spacer {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        position: relative;
    }

    .navbar-menu {
        background-color: #d4ebe8;
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 20px;
        position: fixed;
        top: 73px;
        width: 100%;
        height: calc(100vh - 73px);
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .menu-item {
        background-color: #ffffff;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 0;
        width: 100%;
    }

    .menu-item:last-child {
        margin-bottom: 0;
    }

    .menu-link {
        color: #279785;
        display: block;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 20px;
        text-align: left;
    }

    .navbar-actions {
        background-color: #d4ebe8;
        bottom: 0;
        display: none;
        flex-direction: column;
        gap: 12px;
        left: 0;
        padding: 20px;
        position: fixed;
        width: 100%;
        z-index: 998;
    }

    .navbar-actions.active {
        display: flex;
    }

    .action-button {
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 24px;
        text-align: center;
        width: 100%;
    }

    .action-button--login {
        background-color: #ffffff;
        border: 2px solid #279785;
        color: #279785;
    }

    .action-button--register {
        background-color: #279785;
        color: #ffffff;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


.testimonials-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.testimonials-container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.testimonials-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.slider-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 30px;
    width: calc((100% - 40px) / 3);
}

.testimonial-header {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar-container {
    background-color: #e0e0e0;
    border-radius: 50%;
    flex-shrink: 0;
    height: 60px;
    overflow: hidden;
    width: 60px;
}

.testimonial-avatar {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.testimonial-name {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
}

.slider-button {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 20px;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-button--prev {
    left: -60px;
}

.slider-button--next {
    right: -60px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 28px;
    }

    .slider-button {
        height: 40px;
        width: 40px;
        font-size: 16px;
    }

    .slider-button--prev {
        left: -10px;
    }

    .slider-button--next {
        right: -10px;
    }

    .slider-viewport {
        padding: 10px 30px 20px 30px;
    }

    .testimonial-card {
        width: 100%;
    }
}

.policy-section {
    background-color: var(--white);
    padding: 120px 20px 80px;
}

.policy-container {
    margin: 0 auto;
    max-width: 800px;
}

.policy-main-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.policy-date {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
}

.policy-content h2 {
    color: var(--primary-color);
    border-bottom: 1px solid #e0e0e0;
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.policy-content p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-content ul {
    list-style-type: disc;
    margin-bottom: 25px;
    padding-left: 25px;
}

.policy-content li {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-content strong {
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .policy-main-title {
        font-size: 32px;
    }

    .policy-content h2 {
        font-size: 24px;
        margin-top: 30px;
    }
}

.register-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    background-color: #f7f7f7;
}

.register-form-container-page {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.register-form-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.register-form-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    display: block;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
    color: var(--text-primary);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox {
    margin-top: 4px;
    min-width: 16px;
    min-height: 16px;
}

.form-checkbox-label {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-link:hover {
    text-decoration: underline;
}

.form-submit-button.register-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 25px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-submit-button.register-button:hover {
    background-color: var(--primary-dark);
}

.login-prompt {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 25px;
}

.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
    height: 18px;
}

@media (max-width: 600px) {
    .register-form-section {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .register-form-title {
        font-size: 30px;
    }

    .form-submit-button.register-button {
        font-size: 17px;
        padding: 12px 20px;
    }
}

.video-demo-section {
    background-color: var(--primary-light);
    padding: 100px 20px;
    text-align: center;
}

.video-demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.video-description {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(23, 107, 96, 0.15);
    background-color: #000;
}

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

@media (max-width: 768px) {
    .video-demo-section {
        padding: 60px 20px;
    }

    .video-title {
        font-size: 28px;
    }

    .video-description {
        font-size: 16px;
    }

    .video-wrapper {
         border-radius: 12px;
    }
}

