@font-face {
  font-family: 'Gurajada';
  src: url('../../cx-engine/cx-fonts/Gurajada-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martel Sans';
  src: url('../../cx-engine/cx-fonts/MartelSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martel Sans';
  src: url('../../cx-engine/cx-fonts/MartelSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martel Sans';
  src: url('../../cx-engine/cx-fonts/MartelSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martel Sans';
  src: url('../../cx-engine/cx-fonts/MartelSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martel Sans';
  src: url('../../cx-engine/cx-fonts/MartelSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FFA502;
    --accent-color: #FFE66D;
    --dark-color: #2F3542;
    --light-color: #F1F2F6;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    --font-heading: 'Gurajada', serif;
    --font-body: 'Martel Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.cx_header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1366px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.cx_header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cx_header-logo img {
    height: 50px;
    width: auto;
}

.cx_header-logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cx_header-nav-list {
    width: 100%;
    max-width: 666px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.cx_header-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.cx_header-nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.cx_header-nav-link i {
    font-size: 1.2rem;
}

.cx_header-contact-btn {
    background: var(--gradient);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.cx_header-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cx_header-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.cx_header-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.cx_premium-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../cx-image/cx-background-image-4.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
}

.cx_premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cx_premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cx_premium-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.cx_premium-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-out;
}

.cx_premium-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

.cx_premium-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--dark-color);
    transition: var(--transition);
}

.cx_premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cx_premium-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.cx_premium-card p {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.cx_about-section {
    display: flex;
    min-height: 900px;
    max-width: 1366px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.cx_about-image {
    flex: 1;
    border-radius: 20px;
    margin-right: 2rem;
    align-self: flex-start;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cx_about-content {
    flex: 1;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    align-self: flex-end;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cx_about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cx_about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cx_about-contact-btn {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cx_about-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cx_welcome-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../cx-image/cx-background-image-1.jpg') no-repeat center center;
    background-size: cover;
}

.cx_welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cx_welcome-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cx_welcome-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cx_welcome-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cx_welcome-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.cx_welcome-icons i {
    transition: var(--transition);
}

.cx_welcome-icons i:hover {
    transform: scale(1.2) rotate(15deg);
    color: white;
}

.cx_features-section {
    padding: 5rem 2rem;
    max-width: 1366px;
    margin: 0 auto;
}

.cx_features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cx_features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cx_features-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cx_features-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cx_features-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.cx_features-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cx_features-card p {
    font-size: 1rem;
    color: #666;
}

.cx_reviews-section {
    padding: 5rem 2rem;
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.cx_reviews-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cx_reviews-staircase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    min-height: 800px;
}

.cx_reviews-card {
    background-color: white;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    transition: var(--transition);
    position: relative;
}

.cx_reviews-card:nth-child(1) {
    align-self: flex-start;
    margin-left: 5%;
    animation: slideInLeft 1s ease-out;
}

.cx_reviews-card:nth-child(2) {
    align-self: flex-end;
    margin-right: 10%;
    animation: slideInRight 1.2s ease-out;
}

.cx_reviews-card:nth-child(3) {
    align-self: flex-start;
    margin-left: 15%;
    animation: slideInLeft 1.4s ease-out;
}

.cx_reviews-card:nth-child(4) {
    align-self: flex-end;
    margin-right: 5%;
    animation: slideInRight 1.6s ease-out;
}

.cx_reviews-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cx_reviews-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -30px;
    left: -30px;
    border: 3px solid var(--accent-color);
}

.cx_reviews-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cx_reviews-card p:first-of-type {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.cx_reviews-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cx_reviews-card p:last-of-type {
    font-style: italic;
    margin-bottom: 1rem;
}

.cx_reviews-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
}

.cx_faq-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../cx-image/cx-background-image-2.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
}

.cx_faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cx_faq-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
}

.cx_faq-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cx_faq-columns {
    display: flex;
    gap: 2rem;
}

.cx_faq-column {
    flex: 1;
}

.cx_faq-item {
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.cx_faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cx_faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cx_faq-question i {
    transition: var(--transition);
}

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

.cx_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.cx_faq-answer p {
    padding: 1.5rem 0;
}

.cx_faq-answer.shake {
    animation: shake 0.5s;
}

.cx_faq-contact-btn {
    display: block;
    margin: 3rem auto 0;
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cx_faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cx_homeform-section {
    padding: 5rem 2rem;
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.cx_homeform-content {
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 3rem;
    margin: 0 auto;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cx_homeform-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cx_homeform-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.cx_homeform-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cx_homeform-input,
.cx_homeform-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.cx_homeform-phonewrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cx_homeform-prefix {
    background-color: #f5f5f5;
    padding: 0.9rem 0.8rem;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-family: var(--font-body);
    color: #555;
}

.cx_homeform-phonewrap .cx_homeform-input {
    border-radius: 0 8px 8px 0;
    flex: 1;
    padding-left: 0.5rem;
}

.cx_homeform-textarea {
    min-height: 150px;
    resize: vertical;
}

.cx_homeform-input:focus,
.cx_homeform-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.cx_homeform-hint {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
    opacity: 0;
    transition: var(--transition);
    height: 0;
    overflow: hidden;
}

.cx_homeform-input:focus ~ .cx_homeform-hint,
.cx_homeform-textarea:focus ~ .cx_homeform-hint {
    opacity: 1;
    height: auto;
}

.cx_homeform-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1.2rem;
}

.cx_homeform-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cx_homeform-check-input {
    width: auto;
}

.cx_homeform-check label {
    margin-bottom: 0;
    font-weight: normal;
}

.cx_homeform-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cx_homeform-submit {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cx_homeform-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cx_homeform-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cx_homeform-success.active {
    opacity: 1;
    visibility: visible;
}

.cx_homeform-success-content {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.cx_homeform-success.active .cx_homeform-success-content {
    transform: translateY(0);
}

.cx_homeform-success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.cx_homeform-success-close:hover {
    color: var(--primary-color);
}

.cx_homeform-success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.cx_homeform-success-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cx_homeform-success-content p {
    font-size: 1.1rem;
    color: #666;
}

@media screen and (max-width: 768px) {
    .cx_homeform-content {
        padding: 2rem;
    }
    
    .cx_homeform-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .cx_homeform-content {
        padding: 1.5rem;
    }
    
    .cx_homeform-check {
        align-items: flex-start;
    }
    
    .cx_homeform-check label {
        font-size: 0.9rem;
    }
}

.cx_footer-container {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../cx-image/cx-background-image-3.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.cx_footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cx_footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
}

.cx_footer-logo {
    margin-bottom: 2rem;
}

.cx_footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.cx_footer-logo p {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.cx_footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cx_footer-link {
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.cx_footer-link:hover {
    color: var(--accent-color);
}

.cx_footer-contact-btn {
    background: transparent;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cx_footer-contact-btn:hover {
    background: white;
    color: var(--dark-color);
}

.cx_footer-copyright {
    font-size: 0.9rem;
    color: #ccc;
}

.cx_cookies-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    display: none;
    z-index: 1000;
}

.cx_cookies-content {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cx_cookies-content p {
    flex: 1;
    min-width: 300px;
}

.cx_cookies-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cx_cookies-accept {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.cx_cookies-accept:hover {
    background-color: var(--secondary-color);
}

.cx_modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cx_modal-container.active {
    opacity: 1;
    visibility: visible;
}

.cx_modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.cx_modal-content {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(50px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.cx_modal-container.active .cx_modal-content {
    transform: translateY(0);
}

.cx_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.cx_modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.cx_modal-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cx_modal-formgroup {
    margin-bottom: 1.5rem;
}

.cx_modal-formgroup label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cx_modal-formgroup input,
.cx_modal-formgroup textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.cx_modal-formgroup input:focus,
.cx_modal-formgroup textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.cx_modal-formgroup textarea {
    min-height: 120px;
    resize: vertical;
}

.cx_modal-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cx_modal-checkbox input {
    width: auto;
}

.cx_modal-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.cx_modal-submit {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cx_modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cx_contact-name_hint,
.cx_contact-email_hint,
.cx_contact-message_hint {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
    opacity: 0;
    transition: var(--transition);
    height: 0;
}

.cx_contact-name_input:focus ~ .cx_contact-name_hint,
.cx_contact-email_input:focus ~ .cx_contact-email_hint,
.cx_contact-message_input:focus ~ .cx_contact-message_hint {
    opacity: 1;
    height: auto;
}

.cx_contact-name_input.valid,
.cx_contact-email_input.valid,
.cx_contact-message_input.valid {
    border-color: #4CAF50;
}

.cx_scroll-top {
    position: fixed;
    bottom: 292px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cx_scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.cx_scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cx_modal-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.cx_modal-success.active {
    opacity: 1;
    visibility: visible;
}

.cx_modal-success-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cx_modal-success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.cx_modal-success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cx_modal-success-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.cx_modal-success-close {
    background: var(--gradient);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.cx_modal-success-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.no-scroll {
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@media screen and (max-width: 1024px) {
    .cx_premium-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cx_features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cx_faq-columns {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .cx_header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .cx_header-nav.active {
        right: 0;
    }
    
    .cx_header-nav-list {
        padding-top: 50px;
        flex-direction: column;
        align-items: center;
    }
    
    .cx_header-contact-btn {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .cx_header-burger {
        display: flex;
    }
    
    .cx_header-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .cx_header-burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .cx_header-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .cx_premium-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cx_features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cx_about-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .cx_about-image {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
        height: 300px;
        align-self: center;
    }
    
    .cx_about-content {
        width: 100%;
        height: auto;
        align-self: center;
    }
    
    .cx_reviews-card {
        width: 90%;
    }
    
    .cx_reviews-card:nth-child(1),
    .cx_reviews-card:nth-child(2),
    .cx_reviews-card:nth-child(3),
    .cx_reviews-card:nth-child(4) {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .cx_premium-content h2 {
        font-size: 2.5rem;
    }
    
    .cx_premium-cards {
        grid-template-columns: 1fr;
    }
    
    .cx_features-grid {
        grid-template-columns: 1fr;
    }
    
    .cx_header-logo h1 {
        font-size: 1.5rem;
    }
    
    .cx_header-logo img {
        height: 40px;
    }
    
    .cx_about-content h2,
    .cx_welcome-content h2,
    .cx_features-section h2,
    .cx_reviews-section h2,
    .cx_faq-content h2 {
        font-size: 2rem;
    }
    
    .cx_footer-logo p {
        font-size: 1.5rem;
    }
    
    .cx_footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cx_cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cx_cookies-content p {
        min-width: auto;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 320px) {
    .cx_premium-content h2 {
        font-size: 2rem;
    }
    
    .cx_premium-content p {
        font-size: 1rem;
    }
    
    .cx_header-container {
        padding: 1rem;
    }
    
    .cx_header-logo h1 {
        font-size: 1.3rem;
    }
    
    .cx_header-logo img {
        height: 30px;
    }
    
    .cx_about-content,
    .cx_modal-content {
        padding: 1.5rem;
    }
    
    .cx_footer-logo p {
        font-size: 1.3rem;
    }
}

.cxpage_cookies-main {
    padding-top: 100px;
    max-width: 1366px;
    margin: 0 auto;
}

.cxpage_cookies-section {
    padding: 2rem;
}

.cxpage_cookies-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FFA502;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cxpage_cookies-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.cxpage_cookies-item {
    background-color: #FFF9F0;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid #FFA502;
}

.cxpage_cookies-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 165, 2, 0.1);
}

.cxpage_cookies-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2F3542;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cxpage_cookies-item p {
    min-height: 120px;
    color: #666;
}

@media screen and (max-width: 1024px) {
    .cxpage_cookies-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cxpage_cookies-title {
        font-size: 2rem;
    }
    
    .cxpage_cookies-content {
        grid-template-columns: 1fr;
    }
    
    .cxpage_cookies-item p {
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .cxpage_cookies-section {
        padding: 1rem;
    }
    
    .cxpage_cookies-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

.cxpage_policy-main {
    padding-top: 100px;
    max-width: 1366px;
    margin: 0 auto;
}

.cxpage_policy-section {
    padding: 2rem;
}

.cxpage_policy-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cxpage_policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.cxpage_policy-item {
    background-color: #FFF5F5;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid #FF6B6B;
}

.cxpage_policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.1);
}

.cxpage_policy-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2F3542;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cxpage_policy-item p {
    min-height: 120px;
    color: #666;
}

@media screen and (max-width: 1024px) {
    .cxpage_policy-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cxpage_policy-title {
        font-size: 2rem;
    }
    
    .cxpage_policy-content {
        grid-template-columns: 1fr;
    }
    
    .cxpage_policy-item p {
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .cxpage_policy-section {
        padding: 1rem;
    }
    
    .cxpage_policy-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

.cxpage_error-main {
    padding-top: 100px;
    max-width: 1366px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.cxpage_error-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    gap: 3rem;
}

.cxpage_error-content {
    flex: 1;
}

.cxpage_error-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.cxpage_error-icon i {
    font-size: 120px;
    color: #FF6B6B;
    position: relative;
    z-index: 1;
}

.cxpage_error-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.cxpage_error-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2F3542;
}

.cxpage_error-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cxpage_error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B6B, #FFA502);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cxpage_error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cxpage_error-image {
    flex: 1;
    text-align: center;
}

.cxpage_error-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media screen and (max-width: 1024px) {
    .cxpage_error-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cxpage_error-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .cxpage_error-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .cxpage_error-section {
        padding: 1rem;
    }
    
    .cxpage_error-title {
        font-size: 2rem;
    }
    
    .cxpage_error-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .cxpage_error-icon i {
        font-size: 80px;
    }
    
    .cxpage_error-icon span {
        font-size: 1.8rem;
    }
}