:root {
    --color-primary: rgb(33, 53, 85);
    --color-secondary: rgb(62, 88, 121);
    --color-accent: rgb(216, 196, 182);
    --color-light: rgb(245, 239, 231);
    --color-primary-dark: rgb(30, 48, 77);
    --color-primary-light: rgb(36, 58, 93);
    --color-secondary-dark: rgb(57, 81, 111);
    --color-secondary-light: rgb(67, 95, 131);
    --color-accent-dark: rgb(199, 180, 167);
    --color-accent-light: rgb(233, 212, 197);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-primary);
    background: var(--color-light);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12,
.col-md-3,
.col-md-6,
.col-md-7,
.col-lg-3,
.col-lg-5,
.col-lg-6,
.col-lg-8,
.col-lg-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
}

.text-center {
    text-align: center !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.d-flex {
    display: flex !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-35 {
    margin-bottom: 35px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-3,
.no-gutters > .col-md-7 {
    padding-right: 0;
    padding-left: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.vex-arium {
    background: var(--color-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mer-flux-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qor-prime-brand {
    flex: 0 0 auto;
}

.pex-helix-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: -0.5px;
}

.zar-quent-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end;
}

.lum-phase-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.lum-phase-link:hover {
    color: var(--color-light);
}

.lum-phase-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-accent-light);
    transition: width 0.3s ease;
}

.lum-phase-link:hover::after {
    width: 100%;
}

.nex-kaejr-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
}

.site-section {
    padding: 3em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 7em 0;
    }
}

.pek-arium-hero {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-light);
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2rem !important;
    }
}

.font-weight-light {
    font-weight: 300 !important;
}

.text-black {
    color: var(--color-light) !important;
}

.site-section p {
    color: var(--color-accent-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ftco-section {
    padding: 7em 0;
    position: relative;
}

@media (max-width: 767.98px) {
    .ftco-section {
        padding: 6em 0;
    }
}

.subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .heading-section h2 {
        font-size: 36px;
    }
}

.ftco-animate {
    opacity: 0;
    visibility: hidden;
}

.ftco-animate.animated {
    opacity: 1;
    visibility: visible;
}

.practice-area {
    display: block;
    padding: 40px 25px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.practice-area.border-b {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.practice-area.no-border-l {
    border-left: none;
}

.practice-area .icon {
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.practice-area .icon span {
    font-size: 50px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.practice-area h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.practice-area h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.practice-area p {
    color: var(--color-secondary);
    line-height: 1.7;
}

.practice-area:hover {
    background: rgba(245, 239, 231, 0.5);
}

.practice-area:hover .icon span {
    color: var(--color-primary);
}

.practice-area:hover h3 a {
    color: var(--color-secondary-light);
}

@media (max-width: 767.98px) {
    .practice-area {
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

.about-area {
    padding: 120px 0;
    background: var(--color-light);
}

@media (max-width: 991px) {
    .about-area {
        padding: 80px 0;
    }
}

.section-gap {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .section-gap {
        padding: 80px 0;
    }
}

.about-area .section-title {
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

.about-area p {
    color: var(--color-secondary);
    line-height: 1.625em;
    font-size: 15px;
}

.about-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .about-area .about-left {
        display: none;
    }
}

.primary-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-secondary);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.primary-btn:hover {
    background: var(--color-secondary-light);
    color: #fff;
    transform: translateY(-2px);
}

.primary-btn span {
    color: #fff;
}

@media (max-width: 991px) {
    .about-right {
        margin-top: 40px;
    }
}

.p_120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .p_120 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.support_inner {
    display: flex;
    align-items: center;
}

.support_text h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .support_text h4 {
        font-size: 28px;
    }
}

.support_text p {
    margin-bottom: 20px;
    color: var(--color-secondary);
    line-height: 1.8;
}

.support_img img {
    width: 100%;
    border-radius: 8px;
}

.banner_btn2 {
    line-height: 44px;
    border: 1px solid var(--color-secondary);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 45px;
    display: inline-block;
    background: var(--color-secondary);
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.banner_btn2:hover {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .support_area .col-lg-6:last-child {
        margin-top: 40px;
    }
}

.pricing-section {
    padding: 100px 0;
    background: var(--color-light);
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 70px 0;
    }
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 32px;
    }
}

.pricing-desc {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.7;
}

.pricing-row {
    margin-top: 50px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--color-secondary);
}

.pricing-card.featured {
    border-color: var(--color-secondary);
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(62, 88, 121, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--color-secondary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 10px;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: var(--color-secondary);
    align-self: flex-end;
    margin-bottom: 12px;
}

.pricing-body {
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    font-size: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: #ccc;
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--color-secondary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--color-secondary);
}

.pricing-btn:hover {
    background: transparent;
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.pricing-card.featured .pricing-btn:hover {
    background: transparent;
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 70px 0;
    }
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,239,231,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
    }
}

.testimonials-desc {
    font-size: 1.1rem;
    color: var(--color-accent-light);
    line-height: 1.7;
}

.testimonials-row {
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(245, 239, 231, 0.98);
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(0,0,0,0.08);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.author-role {
    font-size: 13px;
    color: var(--color-secondary);
    margin: 0;
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 25px;
    }
}

.page-content-area {
    padding: 100px 0;
    background: var(--color-light);
    min-height: 60vh;
}

@media (max-width: 991px) {
    .page-content-area {
        padding: 70px 0;
    }
}

.page-content-area h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .page-content-area h1 {
        font-size: 36px;
    }
}

.page-content-area h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .page-content-area h2 {
        font-size: 26px;
        margin-top: 40px;
    }
}

.page-content-area h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .page-content-area h3 {
        font-size: 20px;
        margin-top: 30px;
    }
}

.page-content-area p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.page-content-area a {
    color: var(--color-secondary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content-area a:hover {
    color: var(--color-primary);
}

.contat-from-wrapper {
    padding: 80px 0;
    background: var(--color-light);
}

.contat-from-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contat-from-wrapper p {
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.contat-from-wrapper input[type="text"],
.contat-from-wrapper input[type="email"],
.contat-from-wrapper textarea {
    width: 100%;
    display: block;
    outline: none;
    border-bottom: 1px solid var(--color-accent);
    background-color: inherit;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 23px;
    padding-bottom: 24px;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.contat-from-wrapper input[type="text"]:focus,
.contat-from-wrapper input[type="email"]:focus,
.contat-from-wrapper textarea:focus {
    border-bottom-color: var(--color-secondary);
}

.contat-from-wrapper form ::-webkit-input-placeholder {
    color: var(--color-secondary);
}

.contat-from-wrapper form ::-moz-placeholder {
    color: var(--color-secondary);
}

.contat-from-wrapper form :-ms-input-placeholder {
    color: var(--color-secondary);
}

.contat-from-wrapper form input:-moz-placeholder {
    color: var(--color-secondary);
}

.contat-from-wrapper textarea {
    height: 100px;
    resize: vertical;
}

.contat-from-wrapper input[type="submit"] {
    display: block;
    border: none;
    outline: none;
    width: 220px;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 16px;
    color: #FFF;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: var(--color-secondary);
    margin: 30px auto 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.contat-from-wrapper input[type="submit"]:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
}

.error_message {
    color: #e84d49;
    text-align: center;
    margin-top: 20px;
}

#success_page {
    text-align: center;
    padding: 40px 20px;
}

#success_page h3 {
    color: #60ca6f;
    font-size: 28px;
    margin-bottom: 15px;
}

#success_page p {
    color: #60ca6f;
    font-size: 16px;
}

.lum-helix-footer {
    background: var(--color-primary-dark);
    padding: 70px 0 30px;
    color: var(--color-accent);
}

.pek-flux-top {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(216, 196, 182, 0.2);
}

.vex-kaejr-info {
    max-width: 100%;
}

.mer-quent-brand {
    font-size: 2rem;
    color: var(--color-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.qor-phase-tagline {
    font-size: 1.05rem;
    color: var(--color-accent-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pex-arium-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zar-flux-item {
    font-size: 0.95rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.zar-flux-item i {
    color: var(--color-secondary-light);
    font-size: 1.1rem;
}

.lum-quent-links {
    display: flex;
    justify-content: flex-end;
}

.nex-phase-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pek-helix-subtitle {
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.vex-flux-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.vex-flux-link:hover {
    color: var(--color-accent-light);
    padding-left: 5px;
}

.mer-prime-bottom {
    padding-top: 30px;
}

.qor-quent-copyright {
    font-size: 0.9rem;
    color: var(--color-accent);
}

.pek-kaejr-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.pek-kaejr-cookies.show {
    transform: translateY(0);
}

.vex-quent-cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mer-arium-cookie-text {
    flex: 1;
    min-width: 300px;
}

.qor-flux-cookie-title {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 8px;
    font-weight: 700;
}

.pex-prime-cookie-desc {
    font-size: 0.95rem;
    color: var(--color-accent);
    line-height: 1.5;
}

.zar-helix-cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.lum-kaejr-accept {
    padding: 12px 30px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lum-kaejr-accept:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.nex-arium-reject {
    padding: 12px 30px;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nex-arium-reject:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.pek-flux-learn {
    color: var(--color-accent-light);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pek-flux-learn:hover {
    color: var(--color-light);
}

@media (max-width: 991px) {
    .zar-quent-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .zar-quent-nav.active {
        display: flex;
    }
    
    .nex-kaejr-toggle {
        display: block;
    }
    
    .pek-flux-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .lum-quent-links {
        justify-content: flex-start;
        width: 100%;
    }
    
    .mer-prime-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vex-quent-cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .zar-helix-cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .lum-kaejr-accept,
    .nex-arium-reject {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .support_area .row {
        flex-direction: column;
    }
    
    .support_area .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
}

/* Contact Page Styles */
.contact-page-area {
    padding: 120px 0;
    background: rgb(245,239,231);
}

.contact-info-block {
    padding-right: 40px;
}

.contact-info-block h1 {
    font-size: 48px;
    color: rgb(33,53,85);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 18px;
    color: rgb(62,88,121);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(33,53,85), rgb(62,88,121));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-text h3 {
    font-size: 18px;
    color: rgb(33,53,85);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-text p {
    font-size: 16px;
    color: rgb(62,88,121);
    margin: 0;
    line-height: 1.6;
}

.contact-note {
    padding: 30px;
    background: rgba(216,196,182,0.2);
    border-radius: 10px;
    border-left: 4px solid rgb(216,196,182);
}

.contact-note h3 {
    font-size: 20px;
    color: rgb(33,53,85);
    margin: 0 0 15px 0;
    font-weight: 600;
}

.contact-note p {
    font-size: 15px;
    color: rgb(62,88,121);
    margin: 0 0 10px 0;
    line-height: 1.7;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-form-block {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-block h2 {
    font-size: 32px;
    color: rgb(33,53,85);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form-block .form-group {
    margin-bottom: 25px;
}

.contact-form-block input,
.contact-form-block textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(62,88,121,0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form-block input:focus,
.contact-form-block textarea:focus {
    outline: none;
    border-color: rgb(33,53,85);
}

.contact-form-block textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form-block .submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgb(33,53,85), rgb(62,88,121));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-block .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33,53,85,0.3);
}

/* Thank You Page Styles */
.thankyou-area {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(33,53,85,0.03) 0%, rgba(216,196,182,0.08) 100%);
}

.thankyou-icon {
    font-size: 100px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thankyou-area h1 {
    font-size: 48px;
    color: rgb(33,53,85);
    margin-bottom: 25px;
    font-weight: 700;
}

.thankyou-message {
    font-size: 20px;
    color: rgb(62,88,121);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thankyou-area p {
    font-size: 16px;
    color: rgb(62,88,121);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-actions .primary-btn,
.thankyou-actions .secondary-btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.thankyou-actions .primary-btn {
    background: linear-gradient(135deg, rgb(33,53,85), rgb(62,88,121));
    color: #fff;
}

.thankyou-actions .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33,53,85,0.3);
}

.thankyou-actions .secondary-btn {
    background: rgb(216,196,182);
    color: rgb(33,53,85);
}

.thankyou-actions .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216,196,182,0.4);
}

@media (max-width: 991px) {
    .contact-info-block {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .contact-form-block {
        padding: 35px;
    }
    
    .thankyou-area h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-info-block h1 {
        font-size: 36px;
    }
    
    .contact-form-block h2 {
        font-size: 28px;
    }
    
    .thankyou-icon {
        font-size: 80px;
    }
    
    .thankyou-area h1 {
        font-size: 32px;
    }
    
    .thankyou-message {
        font-size: 18px;
    }
}

/* CTA Block Styles */
.cta-block {
    padding: 50px;
    background: linear-gradient(135deg, rgba(33,53,85,0.05) 0%, rgba(216,196,182,0.15) 100%);
    border-radius: 15px;
    border: 2px solid rgba(216,196,182,0.3);
}

.cta-block h3 {
    font-size: 36px;
    color: rgb(33,53,85);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block p {
    font-size: 18px;
    color: rgb(62,88,121);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, rgb(33,53,85), rgb(62,88,121));
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33,53,85,0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .cta-block {
        padding: 35px 25px;
    }
    
    .cta-block h3 {
        font-size: 28px;
    }
    
    .cta-block p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* About Page Images */
.about-image-wrapper {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-image-wrapper {
        margin: 30px 0;
        border-radius: 10px;
    }
}