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

:root {
    /* Unique Tropical Ocean Palette */
    --blgradient-primary: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #4facfe 75%,
        #00f2fe 100%
    );
    --blgradient-secondary: linear-gradient(
        45deg,
        #fa709a 0%,
        #fee140 50%,
        #30cfd0 100%
    );
    --blgradient-tertiary: linear-gradient(
        120deg,
        #a8edea 0%,
        #fed6e3 25%,
        #ffecd2 50%,
        #fcb69f 75%,
        #ff8a80 100%
    );
    --blgradient-quaternary: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 50%,
        #f093fb 100%
    );
    --blgradient-ocean: linear-gradient(
        180deg,
        #1e3c72 0%,
        #2a5298 50%,
        #7e8ba3 100%
    );
    --blgradient-sunset: linear-gradient(
        135deg,
        #ff6b6b 0%,
        #ffa726 25%,
        #ffd54f 50%,
        #ab47bc 75%,
        #5c6bc0 100%
    );

    /* Unique Accent Colors */
    --blcolor-accent-purple: #667eea;
    --blcolor-accent-pink: #f093fb;
    --blcolor-accent-cyan: #00f2fe;
    --blcolor-accent-coral: #fa709a;
    --blcolor-accent-gold: #fee140;
    --blcolor-accent-teal: #30cfd0;
    --blcolor-accent-violet: #764ba2;

    /* Text Colors */
    --blcolor-text-primary: #1a1a2e;
    --blcolor-text-secondary: #16213e;
    --blcolor-text-light: #ffffff;

    /* Background Colors */
    --blcolor-background-light: #f8f9ff;
    --blcolor-background-dark: #0f0c29;
    --blcolor-background-gradient: linear-gradient(
        135deg,
        #f8f9ff 0%,
        #e8eaff 50%,
        #f0f2ff 100%
    );

    /* Enhanced Shadows */
    --blshadow-soft: 0 4px 15px rgba(102, 126, 234, 0.1);
    --blshadow-medium: 0 10px 30px rgba(102, 126, 234, 0.2);
    --blshadow-large: 0 20px 50px rgba(102, 126, 234, 0.3);
    --blshadow-glow: 0 0 30px rgba(102, 126, 234, 0.4);
    --blshadow-colored: 0 10px 40px rgba(240, 147, 251, 0.3);

    /* Border Radius */
    --blborder-radius-small: 12px;
    --blborder-radius-medium: 20px;
    --blborder-radius-large: 30px;
    --blborder-radius-pill: 50px;

    /* Transitions */
    --bltransition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bltransition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bltransition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Unique Effects */
    --blglass-effect: rgba(255, 255, 255, 0.15);
    --blbackdrop-blur: blur(20px);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--blcolor-text-primary);
    background: var(--blcolor-background-gradient);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(102, 126, 234, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(240, 147, 251, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 20%,
            rgba(0, 242, 254, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quattrocento', serif;
    font-weight: normal;
    line-height: 1.3;
    position: relative;
}

h1 {
    font-size: 3.5rem;
    min-height: 4.2rem;
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

h2 {
    font-size: 2.5rem;
    min-height: 3rem;
    background: var(--blgradient-secondary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 10s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(250, 112, 154, 0.2));
}

h3 {
    font-size: 1.8rem;
    min-height: 2.2rem;
}

h4 {
    font-size: 1.4rem;
    min-height: 1.7rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--bltransition-fast);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--bltransition-fast);
}

.RYCsaXHUof {
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--blshadow-colored);
    backdrop-filter: var(--blbackdrop-blur);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.TNmDScMCo {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.YxmEmozcj {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Quattrocento', serif;
    font-size: 1.5rem;
    color: white;
}

.YxmEmozcj img {
    width: 40px;
    height: 40px;
}

.XXbkUXK {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.RlVGiNO {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.eHaqwgyHiV {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.eHaqwgyHiV::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--bltransition-fast);
}

.eHaqwgyHiV:hover::after {
    width: 100%;
}

.sIWQinqX {
    background: var(--blgradient-secondary);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: var(--blcolor-text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--blborder-radius-pill);
    font-weight: 600;
    box-shadow: var(--blshadow-medium);
    position: relative;
    overflow: hidden;
}

.sIWQinqX::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sIWQinqX:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--blshadow-glow);
}

.sIWQinqX:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 1024px) {
    .TNmDScMCo {
        padding: 0 1.5rem;
    }

    .RlVGiNO {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .TNmDScMCo {
        flex-direction: column;
        padding: 1rem;
    }

    .SBBmAjj {
        width: 100%;
        order: -1;
        margin-bottom: 1rem;
    }

    .XXbkUXK {
        display: block;
        text-align: center;
    }

    .RlVGiNO {
        display: none;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        background: var(--blgradient-primary);
        padding: 1rem;
        border-radius: var(--blborder-radius-medium);
        margin-top: 1rem;
    }

    .RlVGiNO.active {
        display: flex;
    }

    .YxmEmozcj {
        order: 1;
    }
}

@media (max-width: 480px) {
    .TNmDScMCo {
        padding: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
        min-height: 3rem;
    }
}

@media (max-width: 320px) {
    .TNmDScMCo {
        padding: 0.3rem;
    }
}

.hodOb {
    background: var(--blgradient-sunset);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hodOb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/fons.webp') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hodOb::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(102, 126, 234, 0.1) 0%,
            transparent 50%
        );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.acwUPYtCoT {
    max-width: 1520px;
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.acwUPYtCoT h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(102, 126, 234, 0.5);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    animation: gradientShift 8s ease infinite, floatText 6s ease-in-out infinite;
}

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

.QiNuGlk {
    font-size: 1.2rem;
    margin: 1.5rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    min-height: 3.6rem;
}

.iBKYjFGAs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 840px;
    margin: 0 auto 3rem;
}

.TbuXjGgSMTHuqW {
    background: var(--blglass-effect);
    backdrop-filter: var(--blbackdrop-blur);
    padding: 1.5rem;
    border-radius: var(--blborder-radius-medium);
    width: 150px;
    transition: var(--bltransition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.TbuXjGgSMTHuqW::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity var(--bltransition-medium);
}

.TbuXjGgSMTHuqW:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--blshadow-glow);
}

.TbuXjGgSMTHuqW:hover::before {
    opacity: 1;
}

.TbuXjGgSMTHuqW .bi {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.TbuXjGgSMTHuqW p {
    font-weight: 500;
}

.vWmezQxGPXnt {
    background: var(--blgradient-secondary);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: var(--blcolor-text-primary);
    padding: 1.2rem 3rem;
    border-radius: var(--blborder-radius-pill);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--bltransition-medium);
    box-shadow: var(--blshadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.vWmezQxGPXnt:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: var(--blshadow-glow);
}

.vWmezQxGPXnt:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {
    .hodOb {
        padding: 6rem 1.5rem 1.5rem;
    }

    .iBKYjFGAs {
        gap: 1.5rem;
    }

    .TbuXjGgSMTHuqW {
        width: 130px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hodOb {
        padding: 7rem 1rem 1rem;
    }

    .iBKYjFGAs {
        gap: 1rem;
    }

    .TbuXjGgSMTHuqW .bi {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hodOb {
        padding: 8rem 0.5rem 0.5rem;
    }

    .iBKYjFGAs {
        gap: 0.8rem;
    }

    .TbuXjGgSMTHuqW {
        padding: 0.8rem;
    }

    .TbuXjGgSMTHuqW .bi {
        font-size: 1.8rem;
    }

    .vWmezQxGPXnt {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .hodOb {
        padding: 5rem 0.3rem 0.3rem;
    }

    .iBKYjFGAs {
        gap: 0.5rem;
    }

    .TbuXjGgSMTHuqW {
        padding: 0.5rem;
    }
}

.JoypXQ {
    padding: 5rem 2rem;
    background: var(--blcolor-background-light);
}

.JoypXQ h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.DUkecRHwxQdaBx {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.NdzYXvnu {
    background: white;
    padding: 2rem;
    border-radius: var(--blborder-radius-medium);
    box-shadow: var(--blshadow-soft);
    width: 280px;
    text-align: center;
    transition: var(--bltransition-medium);
    position: relative;
    overflow: hidden;
}

.NdzYXvnu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blgradient-primary);
}

.NdzYXvnu:hover {
    transform: translateY(-10px);
    box-shadow: var(--blshadow-large);
}

.FkwIW {
    margin-bottom: 1rem;
}

.FkwIW .bi {
    font-size: 3rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.NdzYXvnu h3 {
    margin-bottom: 1rem;
    min-height: 3.2rem;
}

.NdzYXvnu p {
    color: var(--blcolor-text-secondary);
}

@media (max-width: 1024px) {
    .JoypXQ {
        padding: 4rem 1.5rem;
    }

    .DUkecRHwxQdaBx {
        gap: 1.5rem;
    }

    .NdzYXvnu {
        width: 250px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .JoypXQ {
        padding: 3rem 1rem;
    }

    .DUkecRHwxQdaBx {
        gap: 1rem;
    }

    .NdzYXvnu {
        width: calc(50% - 1rem);
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .JoypXQ {
        padding: 2rem 0.5rem;
    }

    .DUkecRHwxQdaBx {
        gap: 0.8rem;
    }

    .NdzYXvnu {
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 320px) {
    .JoypXQ {
        padding: 2rem 0.3rem;
    }

    .NdzYXvnu {
        padding: 1rem 0.8rem;
    }
}

.sgpKNyRRYVkLzs {
    padding: 5rem 2rem;
    background: var(--blgradient-quaternary);
}

.AOfgjFuoms {
    max-width: 1520px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.fASQXGjlA {
    flex: 1;
}

.fASQXGjlA img {
    border-radius: var(--blborder-radius-large);
    box-shadow: var(--blshadow-large);
    transition: var(--bltransition-medium);
}

.fASQXGjlA img:hover {
    transform: scale(1.02);
}

.NtQWvBerLpUO {
    flex: 1;
    text-align: center;
}

.NtQWvBerLpUO h2 {
    margin-bottom: 1.5rem;
    color: var(--blcolor-text-primary);
}

.NtQWvBerLpUO p {
    margin-bottom: 2rem;
    color: var(--blcolor-text-secondary);
    font-size: 1.1rem;
    min-height: 5.5rem;
}

.HYdZBDWP {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.XTYGQisAOTk {
    text-align: center;
    flex: 1;
}

.XTYGQisAOTk .bi {
    font-size: 2rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.XTYGQisAOTk p {
    font-size: 0.9rem;
    margin: 0;
    min-height: auto;
}

.WyvKQiNpsnxIVer {
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--blborder-radius-pill);
    font-weight: 600;
    display: inline-block;
    transition: var(--bltransition-medium);
    box-shadow: var(--blshadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.WyvKQiNpsnxIVer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.WyvKQiNpsnxIVer:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--blshadow-glow);
}

.WyvKQiNpsnxIVer:hover::before {
    width: 300px;
    height: 300px;
}

.dGPzTSMSr {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.TWKVJMReD {
    flex: 1;
    text-align: center;
}

.TWKVJMReD h2 {
    margin-bottom: 1.5rem;
    color: var(--blcolor-text-primary);
}

.TWKVJMReD p {
    margin-bottom: 2rem;
    color: var(--blcolor-text-secondary);
    font-size: 1.1rem;
    min-height: 5.5rem;
}

.FwyKTRuhpZAb {
    display: flex;
    gap: 1.5rem;
}

.KdnKw {
    text-align: center;
    flex: 1;
}

.KdnKw .bi {
    font-size: 2rem;
    background: var(--blgradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.KdnKw p {
    font-size: 0.9rem;
    margin: 0;
    min-height: auto;
}

.YEmQ {
    flex: 1;
}

.YEmQ img {
    border-radius: var(--blborder-radius-large);
    box-shadow: var(--blshadow-large);
    transition: var(--bltransition-medium);
}

.YEmQ img:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .sgpKNyRRYVkLzs {
        padding: 4rem 1.5rem;
    }

    .AOfgjFuoms,
    .dGPzTSMSr {
        gap: 3rem;
    }

    .HYdZBDWP,
    .FwyKTRuhpZAb {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .sgpKNyRRYVkLzs {
        padding: 3rem 1rem;
    }

    .AOfgjFuoms,
    .dGPzTSMSr {
        flex-direction: column;
        gap: 2rem;
    }

    .HYdZBDWP,
    .FwyKTRuhpZAb {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sgpKNyRRYVkLzs {
        padding: 2rem 0.5rem;
    }

    .AOfgjFuoms,
    .dGPzTSMSr {
        gap: 1.5rem;
    }

    .HYdZBDWP,
    .FwyKTRuhpZAb {
        flex-wrap: wrap;
    }

    .XTYGQisAOTk,
    .KdnKw {
        flex: calc(50% - 0.5rem);
    }
}

@media (max-width: 320px) {
    .sgpKNyRRYVkLzs {
        padding: 2rem 0.3rem;
    }

    .XTYGQisAOTk,
    .KdnKw {
        flex: 100%;
    }
}

.TWWuZg {
    padding: 5rem 2rem;
    background: var(--blcolor-background-gradient);
    position: relative;
    overflow: hidden;
}

.TWWuZg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.TWWuZg h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--blgradient-secondary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 10s ease infinite;
    position: relative;
    display: inline-block;
    width: 100%;
}

.TWWuZg h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--blgradient-primary);
    border-radius: var(--blborder-radius-pill);
    animation: gradientShift 6s ease infinite;
}

.qKoesVGRSj {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.bdyHZULUMoesF {
    background: white;
    border-radius: var(--blborder-radius-large);
    overflow: hidden;
    box-shadow: var(--blshadow-medium);
    width: 100%;
    max-width: 380px;
    height: 100%;
    min-height: 400px;
    transition: var(--bltransition-medium);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.bdyHZULUMoesF::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--blborder-radius-large);
    padding: 2px;
    background: var(--blgradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--bltransition-medium);
    z-index: -1;
}

.bdyHZULUMoesF:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--blshadow-colored);
}

.bdyHZULUMoesF:hover::before {
    opacity: 1;
}

.SzpvUMZadyGM {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--blgradient-secondary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--blborder-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--blshadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: var(--blbackdrop-blur);
}

.bdyHZULUMoesF img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 215px;
    transition: var(--bltransition-medium);
}

.bdyHZULUMoesF:hover img {
    transform: scale(1.05);
}

.HOMezigNFbr {
    padding: 1.5rem;
    text-align: center;
}

.HOMezigNFbr h3 {
    margin-bottom: 0.5rem;
    height: 100%;
    min-height: 78px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--bltransition-medium);
}

.bdyHZULUMoesF:hover .HOMezigNFbr h3 {
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.HOMezigNFbr .bi {
    font-size: 2rem;
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    display: block;
    animation: gradientShift 5s ease infinite;
    transition: var(--bltransition-medium);
}

.bdyHZULUMoesF:hover .HOMezigNFbr .bi {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.4));
}

.Rbjct {
    background: var(--blgradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--blborder-radius-pill);
    font-weight: 600;
    display: inline-block;
    transition: var(--bltransition-medium);
    box-shadow: var(--blshadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.Rbjct::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.Rbjct:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: var(--blshadow-glow);
}

.Rbjct:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 1024px) {
    .TWWuZg {
        padding: 4rem 1.5rem;
    }

    .qKoesVGRSj {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .TWWuZg {
        padding: 3rem 1rem;
    }

    .qKoesVGRSj {
        gap: 1rem;
    }

    .bdyHZULUMoesF {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .TWWuZg {
        padding: 2rem 0.5rem;
    }

    .qKoesVGRSj {
        gap: 0.8rem;
    }

    .bdyHZULUMoesF {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .TWWuZg {
        padding: 2rem 0.3rem;
    }
}

.AKGdJJUO {
    padding: 5rem 2rem;
    background: var(--blgradient-tertiary);
    color: white;
}

.AKGdJJUO h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.ABxhc {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.kUFV {
    background: rgb(0 0 0 / 17%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--blborder-radius-medium);
    width: 350px;
    transition: var(--bltransition-medium);
}

.kUFV:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.venqcPVJS {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.venqcPVJS img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.rtEODmJfpwSJ h4 {
    margin-bottom: 0.5rem;
    min-height: 1.7rem;
}

.xllHxIlBV {
    display: flex;
    gap: 0.2rem;
}

.xllHxIlBV .bi {
    font-size: 1.2rem;
    color: var(--blcolor-accent-yellow);
}

.idFmcGfH {
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 4.8rem;
}

.gDIayLKS {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gDIayLKS .bi {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .AKGdJJUO {
        padding: 4rem 1.5rem;
    }

    .ABxhc {
        gap: 1.5rem;
    }

    .kUFV {
        width: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .AKGdJJUO {
        padding: 3rem 1rem;
    }

    .ABxhc {
        gap: 1rem;
    }

    .kUFV {
        width: calc(50% - 1rem);
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .AKGdJJUO {
        padding: 2rem 0.5rem;
    }

    .ABxhc {
        gap: 0.8rem;
    }

    .kUFV {
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 320px) {
    .AKGdJJUO {
        padding: 2rem 0.3rem;
    }

    .kUFV {
        padding: 1rem 0.8rem;
    }
}

.lDwlKIqYcAN {
    padding: 5rem 2rem;
    background: var(--blcolor-background-light);
}

.lDwlKIqYcAN h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nuBHXPBPOm {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.LCyTWNySw {
    flex: 1;
    min-width: 300px;
}

.LCyTWNySw h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--blcolor-accent-purple);
    color: var(--blcolor-text-primary);
}

.AzagQa {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--blborder-radius-small);
    overflow: hidden;
}

.XVlOasbe {
    padding: 1rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: var(--bltransition-fast);
}

.XVlOasbe:hover {
    background: #f7fafc;
}

.XVlOasbe .bi {
    transition: var(--bltransition-fast);
}

.AzagQa.active .XVlOasbe .bi {
    transform: rotate(180deg);
}

.SiGAdErWVU {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--bltransition-medium);
    background: white;
}

.AzagQa.active .SiGAdErWVU {
    padding: 1rem;
    max-height: 500px;
}

.SiGAdErWVU p {
    color: var(--blcolor-text-secondary);
    margin-bottom: 1rem;
}

.SiGAdErWVU a {
    color: var(--blcolor-accent-purple);
    font-weight: 500;
}

.EORIsbNeH {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.MvXtsJBm {
    background: var(--blgradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--blborder-radius-medium);
    font-weight: 500;
    display: inline-block;
    transition: var(--bltransition-medium);
}

.MvXtsJBm:hover {
    transform: translateY(-3px);
    box-shadow: var(--blshadow-medium);
}

@media (max-width: 1024px) {
    .lDwlKIqYcAN {
        padding: 4rem 1.5rem;
    }

    .nuBHXPBPOm {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .lDwlKIqYcAN {
        padding: 3rem 1rem;
    }

    .nuBHXPBPOm {
        gap: 1rem;
    }

    .LCyTWNySw {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .lDwlKIqYcAN {
        padding: 2rem 0.5rem;
    }

    .XVlOasbe {
        padding: 0.8rem;
    }

    .AzagQa.active .SiGAdErWVU {
        padding: 0.8rem;
    }
}

@media (max-width: 320px) {
    .lDwlKIqYcAN {
        padding: 2rem 0.3rem;
    }

    .XVlOasbe {
        padding: 0.7rem;
    }

    .AzagQa.active .SiGAdErWVU {
        padding: 0.7rem;
    }
}

.zHMsfjePlHwa {
    background: var(--blgradient-secondary);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--blcolor-text-primary);
}

.BfsXsFPXdNQa {
    max-width: 1520px;
    margin: 0 auto;
}

.zHMsfjePlHwa h2 {
    margin-bottom: 1.5rem;
}

.zHMsfjePlHwa p {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    min-height: 3.3rem;
}

.jFpJdW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 840px;
    margin: 0 auto 3rem;
}

.KTUBmOBrkgl {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--blborder-radius-medium);
    width: 150px;
    transition: var(--bltransition-medium);
}

.KTUBmOBrkgl:hover {
    transform: translateY(-10px) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.KTUBmOBrkgl .bi {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.KTUBmOBrkgl p {
    font-weight: 500;
    margin: 0;
    min-height: auto;
}

.qxFN {
    background: var(--blgradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--blborder-radius-large);
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--bltransition-medium);
}

.qxFN:hover {
    transform: scale(1.05);
    box-shadow: var(--blshadow-large);
}

@media (max-width: 1024px) {
    .zHMsfjePlHwa {
        padding: 4rem 1.5rem;
    }

    .jFpJdW {
        gap: 1.5rem;
    }

    .KTUBmOBrkgl {
        width: 130px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .zHMsfjePlHwa {
        padding: 3rem 1rem;
    }

    .jFpJdW {
        gap: 1rem;
    }

    .KTUBmOBrkgl .bi {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .zHMsfjePlHwa {
        padding: 2rem 0.5rem;
    }

    .jFpJdW {
        gap: 0.8rem;
    }

    .KTUBmOBrkgl {
        padding: 0.8rem;
    }

    .KTUBmOBrkgl .bi {
        font-size: 1.8rem;
    }

    .qxFN {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .zHMsfjePlHwa {
        padding: 2rem 0.3rem;
    }

    .jFpJdW {
        gap: 0.5rem;
    }

    .KTUBmOBrkgl {
        padding: 0.5rem;
    }
}

.WAyUVrfrteXKC {
    padding: 5rem 2rem;
    background: var(--blcolor-background-light);
}

.IBSz {
    max-width: 1520px;
    margin: 0 auto;
}

.WAyUVrfrteXKC h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mYNcentThTcZ {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.mYNcentThTcZ p {
    margin-bottom: 1.5rem;
    color: var(--blcolor-text-secondary);
    font-size: 1.1rem;
    min-height: 5.5rem;
}

.mYNcentThTcZ a {
    color: var(--blcolor-accent-purple);
    font-weight: 500;
}

.tbAwKASBnb {
    background: var(--blgradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--blborder-radius-medium);
    font-weight: 500;
    display: inline-block;
    transition: var(--bltransition-medium);
    margin-top: 1rem;
}

.tbAwKASBnb:hover {
    transform: translateY(-3px);
    box-shadow: var(--blshadow-medium);
}

.bIcPERU {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.qdcGUixW {
    transition: var(--bltransition-medium);
}

.qdcGUixW:hover {
    transform: scale(1.05);
}

.qdcGUixW img {
    border-radius: var(--blborder-radius-small);
}

@media (max-width: 1024px) {
    .WAyUVrfrteXKC {
        padding: 4rem 1.5rem;
    }

    .bIcPERU {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .WAyUVrfrteXKC {
        padding: 3rem 1rem;
    }

    .bIcPERU {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .WAyUVrfrteXKC {
        padding: 2rem 0.5rem;
    }

    .bIcPERU {
        gap: 0.8rem;
    }

    .qdcGUixW img {
        width: 80px;
        height: 40px;
    }
}

@media (max-width: 320px) {
    .WAyUVrfrteXKC {
        padding: 2rem 0.3rem;
    }

    .bIcPERU {
        gap: 0.5rem;
    }

    .qdcGUixW img {
        width: 70px;
        height: 35px;
    }
}

.LVNgDaKjuCa {
    padding: 5rem 2rem;
    background: var(--blgradient-quaternary);
}

.CiOIqXlsDif {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.UmLnxI {
    flex: 1;
}

.UmLnxI h2 {
    margin-bottom: 2rem;
    color: var(--blcolor-text-primary);
}

.WqhQM {
    background: white;
    padding: 2rem;
    border-radius: var(--blborder-radius-medium);
    box-shadow: var(--blshadow-medium);
}

.qtQKWIdMHAe {
    margin-bottom: 1.5rem;
}

.qtQKWIdMHAe label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--blcolor-text-primary);
}

.qtQKWIdMHAe input,
.qtQKWIdMHAe textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: var(--blborder-radius-small);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--bltransition-fast);
}

.qtQKWIdMHAe input:focus,
.qtQKWIdMHAe textarea:focus {
    outline: none;
    border-color: var(--blcolor-accent-purple);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

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

.yvxaSrecl {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #e53e3e;
    min-height: 1rem;
}

.lZInXrzbki {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lZInXrzbki input {
    margin-top: 0.2rem;
}

.lZInXrzbki label {
    font-size: 0.9rem;
    margin: 0;
}

.lZInXrzbki a {
    color: var(--blcolor-accent-purple);
    font-weight: 500;
}

.LuZYPHBsg {
    background: var(--blgradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--blborder-radius-small);
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    transition: var(--bltransition-medium);
}

.LuZYPHBsg:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--blshadow-medium);
}

.LuZYPHBsg:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.yZZBwa {
    flex: 1;
}

.yZZBwa h3 {
    margin-bottom: 2rem;
    color: var(--blcolor-text-primary);
}

.QAshevhXw {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nqcInG {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.nqcInG .bi {
    font-size: 2rem;
    background: var(--blgradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 0.2rem;
}

.nqcInG h4 {
    margin-bottom: 0.5rem;
    min-height: 1.7rem;
}

.nqcInG p {
    color: var(--blcolor-text-secondary);
    margin-bottom: 0.3rem;
}

.nqcInG a {
    color: var(--blcolor-accent-purple);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .LVNgDaKjuCa {
        padding: 4rem 1.5rem;
    }

    .CiOIqXlsDif {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .LVNgDaKjuCa {
        padding: 3rem 1rem;
    }

    .CiOIqXlsDif {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .LVNgDaKjuCa {
        padding: 2rem 0.5rem;
    }

    .WqhQM {
        padding: 1.5rem;
    }

    .nqcInG {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .LVNgDaKjuCa {
        padding: 2rem 0.3rem;
    }

    .WqhQM {
        padding: 1rem;
    }
}

.wTRklJBt {
    background: var(--blgradient-primary);
    color: white;
    padding: 3rem 2rem 1rem;
}

.cTYCuFwH {
    max-width: 1520px;
    margin: 0 auto;
}

.ZFhzTUy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.kBAzGu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Quattrocento', serif;
    font-size: 1.5rem;
}

.kBAzGu img {
    width: 40px;
    height: 40px;
}

.nmEddudSLMr {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.nmEddudSLMr a {
    transition: var(--bltransition-fast);
}

.nmEddudSLMr a:hover {
    color: var(--blcolor-accent-yellow);
}

.wIozwFNVbBb {
    text-align: center;
    padding-top: 1rem;
}

@media (max-width: 1024px) {
    .wTRklJBt {
        padding: 2.5rem 1.5rem 1rem;
    }

    .nmEddudSLMr {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wTRklJBt {
        padding: 2rem 1rem 1rem;
    }

    .ZFhzTUy {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nmEddudSLMr {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .wTRklJBt {
        padding: 1.5rem 0.5rem 0.5rem;
    }

    .nmEddudSLMr {
        gap: 0.8rem;
    }
}

@media (max-width: 320px) {
    .wTRklJBt {
        padding: 1rem 0.3rem 0.3rem;
    }

    .nmEddudSLMr {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.nQaLIuxLIyqFb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blcolor-background-dark);
    color: white;
    padding: 1rem 2rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: var(--bltransition-medium);
}

.nQaLIuxLIyqFb.active {
    transform: translateY(0);
}

.OArQKM {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.OArQKM p {
    flex: 1;
}

.OArQKM a {
    color: var(--blcolor-accent-cyan);
    font-weight: 500;
}

.FSPoMdXtr {
    background: var(--blgradient-secondary);
    color: var(--blcolor-text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--blborder-radius-small);
    font-weight: 500;
    white-space: nowrap;
}

.FSPoMdXtr:hover {
    transform: translateY(-2px);
    box-shadow: var(--blshadow-medium);
}

@media (max-width: 768px) {
    .nQaLIuxLIyqFb {
        padding: 1rem;
    }

    .OArQKM {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nQaLIuxLIyqFb {
        padding: 0.8rem;
    }
}

.aQgZjXJlNy {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
    overflow: auto;
}

.gFvzjL {
    background: white;
    padding: 3rem;
    border-radius: var(--blborder-radius-large);
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--blshadow-large);
    animation: blmodalappear 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.gFvzjL::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.gFvzjL {
    scrollbar-width: none;
}

.gFvzjL {
    -ms-overflow-style: none;
}

@keyframes blmodalappear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gFvzjL h2 {
    margin-bottom: 1rem;
    color: var(--blcolor-text-primary);
}

.gFvzjL p {
    margin-bottom: 2rem;
    color: var(--blcolor-text-secondary);
}

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

.IUPIxWK {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.XktiqFL {
    background: var(--blgradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--blborder-radius-medium);
    font-weight: 500;
    transition: var(--bltransition-medium);
}

.XktiqFL:hover {
    transform: translateY(-2px);
    box-shadow: var(--blshadow-medium);
}

.MaFHVf {
    background: transparent;
    color: var(--blcolor-text-secondary);
    padding: 1rem 2rem;
    border-radius: var(--blborder-radius-medium);
    font-weight: 500;
    border: 1px solid #cbd5e0;
    transition: var(--bltransition-medium);
}

.MaFHVf:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .aQgZjXJlNy {
        padding: 1rem;
    }

    .gFvzjL {
        max-height: 95vh;
        padding: 2rem;
    }

    .IUPIxWK {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gFvzjL {
        padding: 1.5rem;
    }

    .IgfGkPcyUnx {
        gap: 0.8rem;
    }
}

.nAMcysbzvpYIc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--bltransition-medium);
}

.nAMcysbzvpYIc.active {
    opacity: 1;
    visibility: visible;
}

.lPZtryiZvqB {
    background: white;
    padding: 3rem;
    border-radius: var(--blborder-radius-large);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--blshadow-large);
    transform: scale(0.8);
    transition: var(--bltransition-medium);
}

.nAMcysbzvpYIc.active .lPZtryiZvqB {
    transform: scale(1);
}

.lPZtryiZvqB .bi {
    font-size: 4rem;
    color: var(--blcolor-accent-green);
    margin-bottom: 1rem;
    display: block;
}

.lPZtryiZvqB h3 {
    margin-bottom: 1rem;
    color: var(--blcolor-text-primary);
}

.lPZtryiZvqB p {
    margin-bottom: 2rem;
    color: var(--blcolor-text-secondary);
}

.gmGvWYYfgU {
    background: var(--blgradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--blborder-radius-medium);
    font-weight: 500;
    transition: var(--bltransition-medium);
}

.gmGvWYYfgU:hover {
    transform: translateY(-2px);
    box-shadow: var(--blshadow-medium);
}

@media (max-width: 768px) {
    .nAMcysbzvpYIc {
        padding: 1rem;
    }

    .lPZtryiZvqB {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .lPZtryiZvqB {
        padding: 1.5rem;
    }
}

.YknCyzwzLGa {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 2rem;
    backdrop-filter: blur(10px);
    overflow: auto;
}

.YknCyzwzLGa.active {
    display: flex;
}

.ZgmEsYbaVjRsb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.ZgmEsYbaVjRsb::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.ZgmEsYbaVjRsb {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kcBrpfzLZeceLz {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.kcBrpfzLZeceLz:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.acQRbxX {
    text-align: center;
    padding: 1rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.acQRbxX::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.acQRbxX .bi {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
    display: block;
}

.acQRbxX h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.acQRbxX p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.acQRbxX-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.hMBgPLMTDOaC,
.YKhOQJarUEUx {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hMBgPLMTDOaC {
    background: white;
    color: #667eea;
}

.YKhOQJarUEUx {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.YKhOQJarUEUx:hover {
    background: white;
    color: #667eea;
}

.CqAoKEWj {
    text-align: center;
    margin-bottom: 2rem;
}

.CqAoKEWj .bi {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%,
    50%,
    100% {
        transform: rotate(0);
    }
    5%,
    15% {
        transform: rotate(15deg);
    }
    10%,
    20% {
        transform: rotate(-15deg);
    }
}

.CqAoKEWj h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.CqAoKEWj p {
    opacity: 0.9;
    line-height: 1.5;
}

.BaCDZvM {
    margin-bottom: 2rem;
}

.lGZwSnjtnz {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lGZwSnjtnz:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.lGZwSnjtnz .bi {
    font-size: 2rem;
    flex-shrink: 0;
}

.lGZwSnjtnz h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Quattrocento', serif;
}

.lGZwSnjtnz p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.PkmF {
    margin-bottom: 2rem;
}

.tbKcFuvygR {
    margin-bottom: 1.5rem;
}

.tbKcFuvygR input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tbKcFuvygR input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.tbKcFuvygR input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.KkoxHB {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ffeb3b;
    min-height: 1rem;
    padding-left: 1.5rem;
}

.oPPb {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.oPPb input {
    margin-top: 0.2rem;
}

.oPPb label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.oPPb a {
    color: #ffeb3b;
    text-decoration: underline;
}

.tHOeSDOah {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #333;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tHOeSDOah:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tHOeSDOah:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.alPvZMTk {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.alPvZMTk p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cnQqUUYIHe {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cnQqUUYIHe:hover {
    text-decoration: underline;
}

.orFtaAanG {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 2rem;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.orFtaAanG.active {
    display: flex;
}

.GtjozlGkiyg {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.GtjozlGkiyg::-webkit-scrollbar,
.acQRbxX::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.GtjozlGkiyg,
.acQRbxX {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.GtjozlGkiyg .bi {
    font-size: 4rem;
    color: #f44336;
    margin-bottom: 1rem;
    display: block;
}

.GtjozlGkiyg h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.GtjozlGkiyg p {
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.5;
}

.ebFEqjMlDSCAv {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ebFEqjMlDSCAv:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .YknCyzwzLGa {
        padding: 1rem;
    }

    .ZgmEsYbaVjRsb {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .CqAoKEWj h2 {
        font-size: 1.5rem;
    }

    .lGZwSnjtnz {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .acQRbxX-buttons {
        flex-direction: column;
    }

    .GtjozlGkiyg {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .ZgmEsYbaVjRsb {
        padding: 1.5rem;
    }

    .CqAoKEWj .bi {
        font-size: 3rem;
    }

    .oPPb {
        flex-direction: column;
        align-items: flex-start;
    }
}

.OTbcgtFS {
    padding-top: 70px;
}

.cKmszmyPz {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.cKmszmyPz h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.RMgKQyr {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.xbXKDNYWQXI {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.PhrmilWSGfJN {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    gap: 3rem;
}

.QmbfEfLjTw {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.QmbfEfLjTw:hover {
    transform: translateY(-5px);
}

.MZpIKHCazOnThw {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.MZpIKHCazOnThw .bi {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.MZpIKHCazOnThw h2 {
    font-size: 2rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.UMrcrahvgEwxG {
    display: grid;
    gap: 2rem;
}

.GILPKYtmlsovp {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.GILPKYtmlsovp:hover {
    background: #edf2f7;
}

.GILPKYtmlsovp .bi {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.GILPKYtmlsovp h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.GILPKYtmlsovp p {
    color: #4a5568;
    line-height: 1.6;
}

.ebyBhV {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.iaugOrwAF {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.iaugOrwAF .bi {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.iaugOrwAF h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.iaugOrwAF p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.EqYWhRDLCWL {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .cKmszmyPz {
        padding: 8rem 1rem;
    }

    .cKmszmyPz h1 {
        font-size: 2.5rem;
    }

    .xbXKDNYWQXI {
        padding: 3rem 1rem;
    }

    .QmbfEfLjTw {
        padding: 2rem 1.5rem;
    }

    .GILPKYtmlsovp {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .iaugOrwAF {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cKmszmyPz h1 {
        font-size: 2rem;
    }

    .MZpIKHCazOnThw {
        flex-direction: column;
        text-align: center;
    }

    .QmbfEfLjTw {
        padding: 1.5rem 1rem;
    }

    .iaugOrwAF {
        padding: 2rem 0.7rem;
    }

    .EqYWhRDLCWL {
        font-size: 0.9rem;
    }
}

.UkqNFxLRvp {
    padding-top: 70px;
}

.xuEDYpZnmU {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.xuEDYpZnmU h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.rroOXUBKtjU {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.rBnQCHiuO {
    padding: 4rem 2rem;
    background: #fffaf0;
}

.utnyOGiuuTT {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    gap: 3rem;
}

.EXYhmPOmGI {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
    border-left: 5px solid #ff6b6b;
    transition: all 0.3s ease;
}

.EXYhmPOmGI:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.SfuNBTgSsQAC {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.SfuNBTgSsQAC .bi {
    font-size: 2.5rem;
    color: #ff6b6b;
}

.SfuNBTgSsQAC h2 {
    font-size: 2rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.fWlZIOV {
    display: grid;
    gap: 2rem;
}

.zNPPZEy {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fffaf0, #fff5e6);
    border-radius: 12px;
    border: 1px solid #ffe0b2;
    transition: all 0.3s ease;
}

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

.zNPPZEy .bi {
    font-size: 2rem;
    color: #ff6b6b;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.zNPPZEy h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.zNPPZEy p {
    color: #4a5568;
    line-height: 1.6;
}

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

.PzPuImctYXFn {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.PzPuImctYXFn .bi {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.PzPuImctYXFn h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.PzPuImctYXFn p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.PzPuImctYXFn a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .xuEDYpZnmU {
        padding: 8rem 1rem;
    }

    .xuEDYpZnmU h1 {
        font-size: 2.5rem;
    }

    .rBnQCHiuO {
        padding: 3rem 1rem;
    }

    .EXYhmPOmGI {
        padding: 2rem 1.5rem;
    }

    .zNPPZEy {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .PzPuImctYXFn {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .xuEDYpZnmU h1 {
        font-size: 2rem;
    }

    .EXYhmPOmGI {
        padding: 1.5rem 1rem;
        border-left: 3px solid #ff6b6b;
    }

    .SfuNBTgSsQAC {
        flex-direction: column;
        text-align: center;
    }
}

.MIvmwSsvVg {
    padding-top: 70px;
}

.AyZCXPYCgJNr {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.AyZCXPYCgJNr h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.yuDlciaj {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.VXBnWeclkTG {
    padding: 4rem 2rem;
    background: #f0fdfa;
}

.lCOjUkty {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    gap: 3rem;
}

.duPcHi {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.duPcHi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.duPcHi:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.DYOqPeQfUaBsK {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.DYOqPeQfUaBsK .bi {
    font-size: 2.5rem;
    color: #4ecdc4;
}

.DYOqPeQfUaBsK h2 {
    font-size: 2rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.lghMTOqZpGqFwuz {
    display: grid;
    gap: 2rem;
}

.CcfcWZV {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f0fdfa;
    border-radius: 12px;
    border: 1px solid #4ecdc4;
    transition: all 0.3s ease;
}

.CcfcWZV:hover {
    background: #e6fcf9;
    transform: translateX(5px);
}

.CcfcWZV .bi {
    font-size: 2rem;
    color: #4ecdc4;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.CcfcWZV h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.CcfcWZV p {
    color: #4a5568;
    line-height: 1.6;
}

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

.rDVeLRVuvTkbPg-card {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.rDVeLRVuvTkbPg-card .bi {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.rDVeLRVuvTkbPg-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.rDVeLRVuvTkbPg-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.nEOObvdZYdqgVf {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.kuLcNdtf,
.ONlrXllGWGe {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.kuLcNdtf {
    background: white;
    color: #4ecdc4;
}

.ONlrXllGWGe {
    background: transparent;
    border: 2px solid white;
}

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

.ONlrXllGWGe:hover {
    color: #4ecdc4;
}

.yFdZapy {
    font-size: 1rem;
}

.yFdZapy a {
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .AyZCXPYCgJNr {
        padding: 8rem 1rem;
    }

    .AyZCXPYCgJNr h1 {
        font-size: 2.5rem;
    }

    .VXBnWeclkTG {
        padding: 3rem 1rem;
    }

    .duPcHi {
        padding: 2rem 1.5rem;
    }

    .CcfcWZV {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .rDVeLRVuvTkbPg-card {
        padding: 2rem 1.5rem;
    }

    .nEOObvdZYdqgVf {
        flex-direction: column;
        align-items: center;
    }

    .kuLcNdtf,
    .ONlrXllGWGe {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .AyZCXPYCgJNr h1 {
        font-size: 2rem;
    }

    .duPcHi {
        padding: 1.5rem 1rem;
    }

    .DYOqPeQfUaBsK {
        flex-direction: column;
        text-align: center;
    }
}

.iBAHJrr {
    padding-top: 70px;
}

.TNXdGLbPDeVfjP {
    background: linear-gradient(135deg, #a8e6cf 0%, #56ab2f 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.TNXdGLbPDeVfjP h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.fZCdzTij {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hsGroeBBy {
    padding: 4rem 2rem;
    background: #f0f9ff;
}

.bgrbSCjzPyBQ {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    gap: 3rem;
}

.pRmQWRecKdIdKmC {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(168, 230, 207, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pRmQWRecKdIdKmC:hover {
    transform: translateY(-5px);
    border-color: #a8e6cf;
    box-shadow: 0 15px 40px rgba(168, 230, 207, 0.2);
}

.GSBIQtC {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #a8e6cf;
}

.GSBIQtC .bi {
    font-size: 2.5rem;
    color: #56ab2f;
}

.GSBIQtC h2 {
    font-size: 2rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.ZYOPpE {
    display: grid;
    gap: 2rem;
}

.pVquRWDBX {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pVquRWDBX::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #56ab2f;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pVquRWDBX:hover::before {
    transform: scaleY(1);
}

.pVquRWDBX:hover {
    background: #e6f7ff;
    transform: translateX(5px);
}

.pVquRWDBX .bi {
    font-size: 2rem;
    color: #56ab2f;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pVquRWDBX h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.pVquRWDBX p {
    color: #4a5568;
    line-height: 1.6;
}

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

.xoNyg-card {
    background: linear-gradient(135deg, #a8e6cf, #56ab2f);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(86, 171, 47, 0.3);
}

.xoNyg-card .bi {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.xoNyg-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.xoNyg-card > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pQesDJLdNSTIiL {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.pMyFNco {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pMyFNco:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wphsywpEyOCD {
    font-size: 1rem;
    margin-top: 1rem;
}

.wphsywpEyOCD a {
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .TNXdGLbPDeVfjP {
        padding: 8rem 1rem;
    }

    .TNXdGLbPDeVfjP h1 {
        font-size: 2.5rem;
    }

    .hsGroeBBy {
        padding: 3rem 1rem;
    }

    .pRmQWRecKdIdKmC {
        padding: 2rem 1.5rem;
    }

    .pVquRWDBX {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .xoNyg-card {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .TNXdGLbPDeVfjP h1 {
        font-size: 2rem;
    }

    .pRmQWRecKdIdKmC {
        padding: 1.5rem 1rem;
    }

    .GSBIQtC {
        flex-direction: column;
        text-align: center;
    }
}

.vHmxPq {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
}

.NZhYscl {
    padding: 4rem 2rem;
    width: 100%;
}

.wbBdet {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.MaQuZvGJF {
    color: white;
    text-align: center;
}

.MaQuZvGJF .bi {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.MaQuZvGJF h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scTzGkQrYHQc {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.oixL {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.IbEQdiNwMnv {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.IbEQdiNwMnv:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.IbEQdiNwMnv .bi {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: none;
}

.IbEQdiNwMnv p {
    font-weight: 600;
    font-size: 0.9rem;
}

.ECngJwalwu {
    background: white;
    color: #ff6b6b;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ECngJwalwu:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.GeXnOtD {
    display: flex;
    justify-content: center;
    align-items: center;
}

.HdIOZk {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #94d82d, #51cf66);
    border-radius: 50%;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.HdIOZk::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #2f3542;
    border-radius: 50%;
}

.HdIOZk::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #ffa502;
    border-radius: 50%;
}

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

@media (max-width: 1024px) {
    .wbBdet {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .HdIOZk {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .NZhYscl {
        padding: 8rem 1rem;
    }

    .MaQuZvGJF h1 {
        font-size: 3rem;
    }

    .oixL {
        gap: 1rem;
    }

    .IbEQdiNwMnv {
        min-width: 120px;
        padding: 1rem;
    }

    .HdIOZk {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .MaQuZvGJF h1 {
        font-size: 2.5rem;
    }

    .scTzGkQrYHQc {
        font-size: 1.1rem;
    }

    .oixL {
        flex-direction: column;
        align-items: center;
    }

    .IbEQdiNwMnv {
        width: 100%;
        max-width: 200px;
    }

    .ECngJwalwu {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .HdIOZk {
        width: 150px;
        height: 150px;
    }

    .HdIOZk::before {
        width: 70px;
        height: 70px;
    }

    .HdIOZk::after {
        width: 40px;
        height: 30px;
    }
}

.OPNDvSwmoqj {
    padding-top: 70px;
}

.tXusa {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    padding: 4rem 2rem;
    color: white;
}

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

.tXusa .jNADXTg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.CHQAmdVgGSUV h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.xqqcdM {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ezhxY {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ezhxY .bi {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
    display: block;
}

.ezhxY h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Quattrocento', serif;
}

.ezhxY p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ezhxY-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nuKBhyrHnAQu,
.LHZQlYegx {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nuKBhyrHnAQu {
    background: white;
    color: #9c27b0;
}

.LHZQlYegx {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.LHZQlYegx:hover {
    background: white;
    color: #9c27b0;
}

.GmYCamJB {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eIfeaxAucl {
    margin-bottom: 1.5rem;
}

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

.eIfeaxAucl input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.eIfeaxAucl input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.eIfeaxAucl input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.wZiJTbSVo {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ffeb3b;
    min-height: 1rem;
}

.hyjgdWMilgsz {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hyjgdWMilgsz input {
    margin-top: 0.2rem;
}

.hyjgdWMilgsz label {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.hyjgdWMilgsz a {
    color: #ffeb3b;
    text-decoration: underline;
}

.HGqVGYhEsET {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #333;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.HGqVGYhEsET:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.HGqVGYhEsET:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hulEMMRHWVLT {
    display: flex;
    justify-content: center;
    align-items: center;
}

.EDjoWKeVm {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.EDjoWKeVm .bi {
    font-size: 8rem;
    color: white;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.XfWdbRow {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.XfWdbRow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
    color: #2d3748;
}

.aVkqOTjx {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.FNYPkXB {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.FNYPkXB:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
}

.FNYPkXB .bi {
    font-size: 3rem;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.FNYPkXB h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.FNYPkXB p {
    color: #4a5568;
    line-height: 1.6;
}

.PlTIGZYix {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2196f3, #21cbf3);
    color: white;
    text-align: center;
}

.PlTIGZYix h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Quattrocento', serif;
}

.PlTIGZYix p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.wtilgcXAJ {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.kqWtNmjs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kqWtNmjs .bi {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.jVIMYNylRgitqK {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Quattrocento', serif;
}

.RpYuMABVhn {
    font-size: 1rem;
    opacity: 0.9;
}

.AfUsScKlzWzjt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 2rem;
}

.AfUsScKlzWzjt.active {
    display: flex;
}

.tkWDqfXzNUps {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease;
}

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

.tkWDqfXzNUps .bi {
    font-size: 4rem;
    color: #f44336;
    margin-bottom: 1rem;
    display: block;
}

.tkWDqfXzNUps h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-family: 'Quattrocento', serif;
}

.tkWDqfXzNUps p {
    margin-bottom: 2rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.WhOKmOqmqqcX {
    background: linear-gradient(135deg, #2196f3, #21cbf3);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.WhOKmOqmqqcX:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

@media (max-width: 1024px) {
    .tXusa .jNADXTg {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .EDjoWKeVm {
        width: 250px;
        height: 250px;
    }

    .EDjoWKeVm .bi {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .tXusa,
    .XfWdbRow,
    .PlTIGZYix {
        padding: 8rem 1rem;
    }

    .CHQAmdVgGSUV h1 {
        font-size: 2.5rem;
    }

    .GmYCamJB,
    .ezhxY {
        padding: 1.5rem;
    }

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

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

    .tkWDqfXzNUps {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .CHQAmdVgGSUV h1 {
        font-size: 2rem;
    }

    .xqqcdM {
        font-size: 1.1rem;
    }

    .EDjoWKeVm {
        width: 200px;
        height: 200px;
    }

    .EDjoWKeVm .bi {
        font-size: 4rem;
    }

    .ezhxY-buttons {
        flex-direction: column;
    }

    .nuKBhyrHnAQu,
    .LHZQlYegx {
        width: 100%;
    }

    .hyjgdWMilgsz {
        flex-direction: column;
        align-items: flex-start;
    }
}
