:root{
    font-size: 6px;
}



main {
    min-height: calc(100vh - 22rem);
    position: relative;
}

.unsubscribe {
    min-height: calc(100vh - 35rem);
    position: relative;
}

.hero__header--legal{
    padding-bottom: 3rem;
}
 .legal-content {
    padding: 2rem 2rem;
}

.legal-section {
    padding-bottom: 2rem;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.legal-section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.legal-section__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
    text-align: left;
}

.legal-accent {
    font-weight: 900;
    color: #f62c84;
}

.categories__block {
    padding: 2rem 0;
}


ol[type="i"] {
    list-style-type: decimal !important;
}

.privacy-page .categories {
    padding-bottom: 10rem;
    min-height: 80vh;
}

.privacy-page .info-wrapper {
    padding: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.privacy-page .info-wrapper h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin: 4rem 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f62c84;
}

.privacy-page .info-wrapper h2:first-child {
    margin-top: 2rem;
}



.privacy-page .info-wrapper p {
    font-size: 2.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}


.privacy-page .info-wrapper ul,
.privacy-page .info-wrapper ol {
    margin: 2rem 0;
    padding-left: 4rem;
}

.privacy-page .info-wrapper li {
    font-size: 2.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
}

.privacy-page .info-wrapper a {
    color: #f62c84;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-page .info-wrapper a:hover {
    color: #d41c6c;
    text-decoration: underline;
}

.privacy-page .info-wrapper strong {
    font-weight: 900;
    color: #333;
}


.privacy-page .info-wrapper ul {
    list-style-type: disc;
}

.privacy-page .info-wrapper ol {
    list-style-type: decimal;
}

.privacy-page .info-wrapper ol[type="i"] {
    list-style-type: lower-roman;
}


.privacy-page .info-wrapper li p {
    margin: 1rem 0;
}


.privacy-page .info-wrapper > p:first-of-type {
    font-weight: 600;
    color: #333;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #f62c84;
}



.unsubscribe-form {
    max-width: 50rem;
    margin: 4rem auto;
    padding: 0 2rem;
}

.unsubscribe-form__wrapper {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.unsubscribe-form__group {
    margin-bottom: 3rem;
}

.unsubscribe-form__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.unsubscribe-form__input {
    width: 100%;
    padding: 1.5rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    border: 2px solid #ddd;
    border-radius: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.unsubscribe-form__input:focus {
    outline: none;
    border-color: #f62c84;
}

.unsubscribe-form__input.error {
    border-color: #ff4444;
}

.unsubscribe-form__error {
    color: #ff4444;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    min-height: 1.6rem;
}

.unsubscribe-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #333;
    line-height: 1.4;
}

.unsubscribe-form__checkbox-label input {
    display: none;
}

.unsubscribe-form__checkbox-custom {
    width: 2rem;
    height: 2rem;
    border: 2px solid #ddd;
    border-radius: 0.3rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.unsubscribe-form__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 1rem;
    height: 1rem;
    background: #f62c84;
    border-radius: 0.1rem;
    transition: transform 0.3s ease;
}

.unsubscribe-form__checkbox-label input:checked + .unsubscribe-form__checkbox-custom {
    border-color: #f62c84;
}

.unsubscribe-form__checkbox-label input:checked + .unsubscribe-form__checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.unsubscribe-form__checkbox-text {
    flex: 1;
}

.unsubscribe-form__button {
    width: 100%;
    padding: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: #f62c84;
    color: white;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unsubscribe-form__button:hover {
    background: #e51e75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 44, 132, 0.3);
}

.unsubscribe-form__message {
    display: none;
}

.unsubscribe-form__success {
    background: white;
    padding: 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.unsubscribe-form__success h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.unsubscribe-form__success p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .unsubscribe-form {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .unsubscribe-form__wrapper {
        padding: 2rem;
    }
    
    .unsubscribe-form__success {
        padding: 3rem 2rem;
    }
    
    .unsubscribe-form__success h3 {
        font-size: 2rem;
    }
    
    .unsubscribe-form__success p {
        font-size: 1.6rem;
    }
}


@media (max-width: 480px) {
    .privacy-page .info-wrapper {
        padding: 1rem;
    }
    
    .privacy-page .info-wrapper h2 {
        font-size: 2.6rem;
    }
    
    .privacy-page .info-wrapper p,
    .privacy-page .info-wrapper li {
        font-size: 2rem;
    }
    
    .privacy-page .info-wrapper ul,
    .privacy-page .info-wrapper ol {
        padding-left: 3rem;
    }
}


@media (max-width: 350px) {
    .privacy-page .info-wrapper h2 {
        font-size: 2.4rem;
    }
    
    .privacy-page .info-wrapper p,
    .privacy-page .info-wrapper li {
        font-size: 1.8rem;
    }
}


@media (max-width: 300px) {
    :root {
        font-size: 1.5vw;
    }
}

@media (min-width: 350px){
    :root {
        font-size: 6px;
    }
}

@media (min-width: 400px){
    :root {
        font-size: 7px;
    }
}

@media (min-width: 500px){
    :root {
        font-size: 8px;
    }
}

@media (min-width: 550px){
    :root {
        font-size: 8px;
    }
}

@media (min-width: 640px){
    :root {
        font-size: 8px;
    } 
}


.unsubscribe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unsubscribe-modal.hidden {
    display: none;
}

.unsubscribe-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.unsubscribe-modal__content {
    position: relative;
    background: white;
    padding: 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 40rem;
    width: 90%;
    animation: modalAppear 0.4s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.unsubscribe-modal__close {
    margin-top: 2rem;
    padding: 2rem 5rem;
    background: #f62c84;
    color: white;
    border: none;
    border-radius: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unsubscribe-modal__close:hover {
    background: #e51e75;
    transform: translateY(-2px);
}


.unsubscribe-modal__content .success-icon {
    width: 6rem;
    height: 6rem;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    animation: bounce 0.6s ease-in-out;
}

.unsubscribe-modal__content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.unsubscribe-modal__content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #666;
    line-height: 1.5;
}

.unsubscribe-form__wrapper.hidden {
    opacity: 0;
    pointer-events: none;
    position: relative; 
}

.legal-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
}

.legal-button {
    display: block;
    padding: 3rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #f62c84, #e91e63);
    border-radius: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 44, 132, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.legal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(246, 44, 132, 0.5);
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-color: white;
}

.legal-button:hover::before {
    left: 100%;
}

.legal-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(246, 44, 132, 0.4);
}

@media (max-width: 768px) {
    .legal-buttons {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .legal-button {
        padding: 2.5rem 1.5rem;
        font-size: 2rem;
    }
}

.entry-text{
    direction: rtl;
    text-align: right;
    padding: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.entry-text a{
    color: #f62c84;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin: 4rem 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f62c84;
}

.entry-text ol{
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.entry-text  ol li {
    position: relative;
    counter-increment: step-counter;
    line-height: 25px;
    padding-left: 20px;
    font-style: italic;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.entry-text p{ 
    margin-bottom: 0.11in; 
    line-height: 108%;
    font-size: 2.2rem;
    color: #666;
}

