*{margin:0;padding:0;box-sizing:border-box}
:root{--primary:#CA4898;--secondary:#D39BA6;--tertiary:#E5C6D3;--text-dark:#212529;--text-medium:#495057;--bg-light:#fafbfc;--bg-white:#fff;--shadow-elegant:0 4px 16px #ca489814;--transition-smooth:all .3s ease}
body{color:var(--text-dark);background:var(--bg-light);font:16px/1.7 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}
header{background:linear-gradient(135deg,var(--bg-white) 0%,#f8f9fa 100%);box-shadow:var(--shadow-elegant);position:relative;z-index:100}
.header_top__row{display:flex;justify-content:space-between;align-items:center;padding:22px 5%;border-bottom:1px solid #ca48981f;min-height:70px}
.company__identity{display:flex;align-items:center;gap:18px}
.logo__container{position:relative;z-index:110}
.logo__container img{height:62px;width:62px;display:block;object-fit:contain}
.brand__name{font-size:1.65rem;font-weight:600;color:var(--text-dark);letter-spacing:-.02em}
.contact__info__primary{display:flex;align-items:center;gap:10px;color:var(--text-medium);font-size:.95rem}
.contact__info__primary a{color:var(--primary);text-decoration:none;font-weight:500;transition:var(--transition-smooth)}
.contact__info__primary a:hover{opacity:.75}
.navigation__primary__row{background:var(--bg-white);padding:0 5%;border-bottom:2px solid var(--tertiary)}
.main__navigation{display:flex;justify-content:center;gap:8px;list-style:none;flex-wrap:wrap}
.main__navigation li{position:relative}
.main__navigation a{display:block;padding:18px 28px;color:var(--text-dark);text-decoration:none;font-weight:500;font-size:1.02rem;transition:var(--transition-smooth);position:relative}
.main__navigation a::after{content:'';position:absolute;bottom:0;left:28px;right:28px;height:3px;background:linear-gradient(90deg,var(--primary),var(--secondary));transform:scaleX(0);transition:transform .3s ease;border-radius:2px 2px 0 0}
.main__navigation a:hover{color:var(--primary)}
.main__navigation a:hover::after{transform:scaleX(1)}
.main__navigation a:focus{outline:2px solid var(--primary);outline-offset:4px;border-radius:4px}
main{min-height:60vh}
footer{background:linear-gradient(160deg,#343a40 0%,#212529 100%);color:#e9ecef;padding:58px 5% 28px;margin-top:80px;position:relative;overflow:hidden}
footer::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--primary) 0%,var(--secondary) 50%,var(--tertiary) 100%)}
.footer__content__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:48px;max-width:1400px;margin:0 auto 48px}
.footer__section__title{font-size:1.25rem;font-weight:600;margin-bottom:20px;color:var(--tertiary);letter-spacing:.02em}
.footer__links__list{list-style:none;display:flex;flex-direction:column;gap:12px}
.footer__links__list a{color:#dee2e6;text-decoration:none;transition:var(--transition-smooth);font-size:.98rem;display:inline-block}
.footer__links__list a:hover{color:var(--tertiary);transform:translateX(4px)}
.footer__links__list a:focus{outline:2px solid var(--tertiary);outline-offset:3px;border-radius:3px}
.footer__contact a{color:var(--secondary);text-decoration:none;font-weight:500;transition:var(--transition-smooth)}
.footer__contact a:hover{color:var(--tertiary)}
.financial__disclaimer{background:#ca48980f;border-left:4px solid var(--secondary);padding:24px;margin:38px 0;border-radius:0 6px 6px 0;font-size:.88rem;line-height:1.65;color:#ced4da;max-width:1200px;margin-left:auto;margin-right:auto}
.financial__disclaimer strong{color:var(--tertiary);font-weight:600}
.footer__bottom{border-top:1px solid #e5c6d326;padding-top:28px;text-align:center;font-size:.92rem;color:#adb5bd;max-width:1400px;margin:0 auto}
.footer__logo__container{display:flex;justify-content:center;margin-bottom:18px}
.footer__logo__container img{height:52px;width:52px;opacity:.85}
@media (max-width: 768px) {
.header_top__row{flex-direction:column;gap:16px;padding:20px 4%;text-align:center}
.company__identity{flex-direction:column;gap:12px}
.brand__name{font-size:1.4rem}
.navigation__primary__row{padding:0 4%}
.main__navigation{flex-direction:column;align-items:stretch;gap:0}
.main__navigation a{padding:16px 20px;text-align:center;border-bottom:1px solid #ca48981a}
.main__navigation a::after{display:none}
footer{padding:48px 4% 24px}
.footer__content__grid{grid-template-columns:1fr;gap:36px}
.financial__disclaimer{padding:18px;margin:28px 0}
}
@media (min-width: 769px) and (max-width: 1024px) {
.header_top__row{padding:20px 4%}
.navigation__primary__row{padding:0 4%}
.main__navigation a{padding:16px 20px;font-size:.96rem}
.footer__content__grid{grid-template-columns:repeat(2,1fr)}
}
.consent__modal{position:fixed;bottom:0;left:0;right:0;background:var(--bg-white);box-shadow:0 -6px 28px #00000026;padding:28px 5%;z-index:9999;border-top:3px solid var(--primary);transform:translateY(100%);transition:transform .4s cubic-bezier(0.68,-0.55,0.265,1.55)}
.consent__modal.visible__state{transform:translateY(0)}
.consent__wrapper{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:20px}
.consent__text__block{color:var(--text-dark);font-size:.95rem;line-height:1.6}
.consent__text__block a{color:var(--primary);text-decoration:underline;font-weight:500}
.consent__actions{display:flex;gap:14px;flex-wrap:wrap}
.btn__accept__all,.btn__reject__all{padding:13px 32px;border:none;border-radius:6px;font-weight:600;font-size:.96rem;cursor:pointer;transition:var(--transition-smooth);min-width:140px;font-family:inherit}
.btn__accept__all{background:linear-gradient(135deg,var(--primary),var(--secondary));color:var(--bg-white)}
.btn__accept__all:hover{opacity:.88;transform:translateY(-2px);box-shadow:0 4px 12px #ca48984d}
.btn__reject__all{background:none;color:var(--text-dark);border:2px solid var(--tertiary)}
.btn__reject__all:hover{background:var(--tertiary);border-color:var(--secondary)}
.btn__accept__all:focus,.btn__reject__all:focus{outline:3px solid var(--primary);outline-offset:3px}
@media (max-width: 640px) {
.consent__modal{padding:22px 4%}
.consent__actions{flex-direction:column}
.btn__accept__all,.btn__reject__all{width:100%;min-width:unset}
}
@keyframes pathMotion {
0%{offset-distance:0}
100%{offset-distance:100%}
}
.animated__path__element{offset-path:path('M 0 100 Q 50 0 100 100');animation:pathMotion 8s cubic-bezier(0.45,0.05,0.55,0.95) infinite}
.partnerships-hero-wrapper{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:80px 20px 60px;position:relative;overflow:hidden}
.partnerships-hero-wrapper::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ca489814 0%,transparent 70%);border-radius:50%}
.partnerships-hero-content{max-width:1200px;margin:0 auto;position:relative;z-index:2}
.partnerships-hero-content h1{font-size:48px;color:#212529;margin:0 0 24px;font-weight:700;line-height:1.2}
.partnerships-hero-content .lead-text{font-size:22px;color:#495057;line-height:1.6;max-width:700px;margin:0 0 16px}
.partnerships-hero-content .secondary-text{font-size:18px;color:#6c757d;line-height:1.7;max-width:650px}
.partnership-types-section{padding:90px 20px;background:#fff;position:relative}
.partnership-types-section::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#CA4898 0%,#D39BA6 50%,#E5C6D3 100%)}
.partnership-container{max-width:1200px;margin:0 auto}
.partnership-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.partnership-text-area h2{font-size:38px;color:#212529;margin:0 0 28px;font-weight:700;line-height:1.3}
.partnership-text-area p{font-size:17px;color:#495057;line-height:1.8;margin:0 0 20px}
.partnership-types-list{list-style:none;padding:0;margin:32px 0 0}
.partnership-types-list li{padding:18px 0;border-bottom:1px solid #e9ecef;font-size:16px;color:#343a40;line-height:1.6;position:relative;padding-left:28px}
.partnership-types-list li::before{content:'→';position:absolute;left:0;color:#CA4898;font-weight:700;font-size:18px}
.partnership-types-list li:last-child{border-bottom:none}
.partnership-visual-area{position:relative}
.partnership-image-wrapper{position:relative;border-radius:12px;overflow:hidden;box-shadow:0 8px 30px #0000001f}
.partnership-image-wrapper img{width:100%;height:420px;object-fit:cover;display:block}
.partnership-accent-box{position:absolute;bottom:-30px;right:-20px;background:#CA4898;color:#fff;padding:28px 32px;border-radius:8px;box-shadow:0 6px 24px #ca48984d;max-width:280px}
.partnership-accent-box p{margin:0;font-size:15px;line-height:1.6;font-weight:500}
.collaboration-approach-section{background:linear-gradient(180deg,#f8f9fa 0%,#fff 100%);padding:80px 20px;position:relative}
.collaboration-approach-section::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:80%;height:2px;background:linear-gradient(90deg,transparent 0%,#E5C6D3 50%,transparent 100%)}
.collaboration-container{max-width:1100px;margin:0 auto}
.collaboration-header{text-align:center;margin-bottom:60px}
.collaboration-header h2{font-size:36px;color:#212529;margin:0 0 20px;font-weight:700}
.collaboration-header p{font-size:18px;color:#6c757d;line-height:1.7;max-width:700px;margin:0 auto}
.collaboration-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}
.step-card{background:#fff;padding:36px 28px;border-radius:8px;border:2px solid #e9ecef;position:relative;transition:all .3s ease}
.step-card:hover{border-color:#D39BA6;transform:translateY(-4px);box-shadow:0 8px 24px #00000014}
.step-number{width:50px;height:50px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;margin-bottom:20px}
.step-card h3{font-size:20px;color:#212529;margin:0 0 14px;font-weight:600}
.step-card p{font-size:15px;color:#495057;line-height:1.7;margin:0}
.testimonial-section{padding:90px 20px;background:#fff;position:relative}
.testimonial-container{max-width:1000px;margin:0 auto}
.testimonial-layout{display:grid;grid-template-columns:200px 1fr;gap:50px;align-items:center;background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:50px;border-radius:12px;border-left:5px solid #CA4898;box-shadow:0 4px 20px #0000000f}
.testimonial-portrait{position:relative}
.testimonial-portrait img{width:180px;height:180px;border-radius:50%;object-fit:cover;border:4px solid #fff;box-shadow:0 4px 16px #0000001f}
.testimonial-content-area blockquote{margin:0 0 24px;padding:0;font-size:19px;color:#343a40;line-height:1.7;font-style:italic;position:relative}
.testimonial-content-area blockquote::before{content:'"';color:#D39BA6;position:absolute;left:-20px;top:-10px;font:60px/1 Georgia,serif}
.testimonial-attribution{display:flex;flex-direction:column;gap:4px}
.testimonial-name{font-size:18px;color:#212529;font-weight:600;margin:0}
.testimonial-role{font-size:15px;color:#6c757d;margin:0}
.partnership-cta-section{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);padding:80px 20px;position:relative;overflow:hidden}
.partnership-cta-section::before{content:'';position:absolute;top:-100px;left:-100px;width:300px;height:300px;background:#ffffff1a;border-radius:50%}
.partnership-cta-section::after{content:'';position:absolute;bottom:-120px;right:-120px;width:350px;height:350px;background:#ffffff14;border-radius:50%}
.partnership-cta-container{max-width:900px;margin:0 auto;text-align:center;position:relative;z-index:2}
.partnership-cta-container h2{font-size:40px;color:#fff;margin:0 0 20px;font-weight:700;line-height:1.3}
.partnership-cta-container p{font-size:19px;color:#fff;line-height:1.7;margin:0 0 36px;opacity:.95}
.cta-button-group{display:flex;gap:20px;justify-content:center;align-items:center}
.primary-cta-button{display:inline-block;background:#fff;color:#CA4898;padding:16px 40px;border-radius:6px;text-decoration:none;font-size:17px;font-weight:600;transition:all .3s ease;box-shadow:0 4px 16px #00000026}
.primary-cta-button:hover{transform:translateY(-2px);box-shadow:0 6px 24px #0003;background:#f8f9fa}
.secondary-cta-button{display:inline-block;background:none;color:#fff;padding:16px 40px;border-radius:6px;text-decoration:none;font-size:17px;font-weight:600;border:2px solid #fff;transition:all .3s ease}
.secondary-cta-button:hover{background:#ffffff26;transform:translateY(-2px)}
.partnership-contact-info{margin-top:40px;padding-top:40px;border-top:1px solid #ffffff4d}
.partnership-contact-info p{font-size:15px;color:#fff;margin:0;opacity:.9}
@media (max-width: 768px) {
.partnerships-hero-wrapper{padding:60px 20px 40px}
.partnerships-hero-content h1{font-size:36px}
.partnerships-hero-content .lead-text{font-size:18px}
.partnerships-hero-content .secondary-text{font-size:16px}
.partnership-types-section{padding:60px 20px}
.partnership-grid{grid-template-columns:1fr;gap:40px}
.partnership-text-area h2{font-size:32px}
.partnership-accent-box{position:static;margin-top:20px;max-width:100%}
.collaboration-approach-section{padding:60px 20px}
.collaboration-header h2{font-size:32px}
.collaboration-steps{grid-template-columns:1fr;gap:30px}
.testimonial-section{padding:60px 20px}
.testimonial-layout{grid-template-columns:1fr;gap:30px;padding:40px 30px;text-align:center}
.testimonial-portrait img{width:140px;height:140px;margin:0 auto}
.testimonial-content-area blockquote{font-size:17px}
.partnership-cta-section{padding:60px 20px}
.partnership-cta-container h2{font-size:32px}
.partnership-cta-container p{font-size:17px}
.cta-button-group{flex-direction:column;width:100%}
.primary-cta-button,.secondary-cta-button{width:100%;text-align:center}
}
.index-hero-main{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:80px 20px 60px;position:relative;overflow:hidden}
.index-hero-main::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,#ca489814 0%,transparent 70%);border-radius:50%}
.hero-content-wrapper{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2}
.hero-text-block h1{font-size:3.2rem;color:#212529;line-height:1.2;margin-bottom:24px;font-weight:700;letter-spacing:-.02em}
.hero-text-block p{font-size:1.15rem;color:#495057;line-height:1.7;margin-bottom:32px}
.hero-cta-group{display:flex;gap:16px;flex-wrap:wrap}
.hero-btn-primary{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;padding:16px 36px;border-radius:8px;text-decoration:none;font-weight:600;font-size:1.05rem;transition:all .3s ease;border:none;box-shadow:0 4px 12px #ca489840}
.hero-btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 20px #ca489859}
.hero-btn-secondary{background:#fff;color:#CA4898;padding:16px 36px;border-radius:8px;text-decoration:none;font-weight:600;font-size:1.05rem;transition:all .3s ease;border:2px solid #E5C6D3}
.hero-btn-secondary:hover{background:#fafbfc;border-color:#D39BA6}
.hero-image-block{position:relative}
.hero-image-block img{width:100%;height:420px;object-fit:cover;border-radius:16px;box-shadow:0 12px 40px #343a4026}
.transformation-section{background:#fff;padding:80px 20px;position:relative}
.transformation-container{max-width:1200px;margin:0 auto}
.section-header-centered{text-align:center;margin-bottom:60px}
.section-header-centered h2{font-size:2.6rem;color:#212529;margin-bottom:16px;font-weight:700}
.section-header-centered p{font-size:1.1rem;color:#495057;max-width:720px;margin:0 auto;line-height:1.7}
.process-grid-layout{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:48px}
.process-card-item{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:36px 28px;border-radius:12px;border:2px solid #E5C6D3;transition:all .3s ease;position:relative}
.process-card-item:hover{transform:translateY(-6px);box-shadow:0 8px 24px #ca48981f;border-color:#D39BA6}
.process-number-badge{width:56px;height:56px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin-bottom:24px}
.process-card-item h3{font-size:1.4rem;color:#212529;margin-bottom:16px;font-weight:600}
.process-card-item p{font-size:1rem;color:#495057;line-height:1.6}
.expertise-showcase-section{background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);padding:80px 20px}
.expertise-wrapper{max-width:1200px;margin:0 auto}
.expertise-split-layout{display:grid;grid-template-columns:45% 55%;gap:60px;align-items:center}
.expertise-visual-side img{width:100%;height:480px;object-fit:cover;border-radius:16px;box-shadow:0 12px 40px #343a401f}
.expertise-content-side h2{font-size:2.4rem;color:#212529;margin-bottom:24px;font-weight:700;line-height:1.3}
.expertise-content-side p{font-size:1.05rem;color:#495057;line-height:1.7;margin-bottom:20px}
.capability-list-modern{list-style:none;padding:0;margin:32px 0}
.capability-list-modern li{padding:16px 0 16px 44px;position:relative;font-size:1.05rem;color:#343a40;line-height:1.6;border-bottom:1px solid #E5C6D3}
.capability-list-modern li:last-child{border-bottom:none}
.capability-list-modern li::before{content:'';position:absolute;left:0;top:16px;width:28px;height:28px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem}
.testimonial-wave-section{background:#fff;padding:80px 20px;position:relative;overflow:hidden}
.testimonial-wave-section::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#CA4898 0%,#D39BA6 50%,#E5C6D3 100%)}
.testimonial-container-main{max-width:1200px;margin:0 auto}
.testimonial-intro-header{text-align:center;margin-bottom:60px}
.testimonial-intro-header h2{font-size:2.5rem;color:#212529;margin-bottom:16px;font-weight:700}
.testimonial-intro-header p{font-size:1.1rem;color:#495057;max-width:680px;margin:0 auto;line-height:1.7}
.testimonial-masonry-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.testimonial-card-modern{background:linear-gradient(135deg,#fafbfc 0%,#fff 100%);padding:36px;border-radius:12px;border-left:4px solid #CA4898;box-shadow:0 4px 16px #343a4014;transition:all .3s ease}
.testimonial-card-modern:hover{transform:translateX(6px);box-shadow:0 6px 24px #ca489826}
.testimonial-profile-row{display:flex;align-items:center;gap:20px;margin-bottom:24px}
.testimonial-avatar-circle{width:64px;height:64px;border-radius:50%;object-fit:cover;border:3px solid #E5C6D3}
.testimonial-profile-info h4{font-size:1.2rem;color:#212529;margin-bottom:4px;font-weight:600}
.testimonial-profile-info span{font-size:.95rem;color:#495057}
.testimonial-card-modern p{font-size:1.05rem;color:#343a40;line-height:1.7;font-style:italic}
.visual-stats-section{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);padding:60px 20px;position:relative}
.stats-content-wrapper{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:40px}
.stat-block-item{text-align:center;padding:24px;background:#ffffff26;border-radius:12px;backdrop-filter:blur(10px);border:2px solid #ffffff40;transition:all .3s ease}
.stat-block-item:hover{background:#ffffff40;transform:translateY(-4px)}
.stat-number-display{font-size:3rem;color:#fff;font-weight:700;margin-bottom:8px;line-height:1}
.stat-label-text{font-size:1.05rem;color:#fff;font-weight:500}
.final-cta-section{background:#fff;padding:80px 20px}
.cta-content-container{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:55% 45%;gap:60px;align-items:center}
.cta-text-column h2{font-size:2.6rem;color:#212529;margin-bottom:24px;font-weight:700;line-height:1.3}
.cta-text-column p{font-size:1.1rem;color:#495057;line-height:1.7;margin-bottom:32px}
.cta-buttons-stack{display:flex;flex-direction:column;gap:16px}
.cta-button-large{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;padding:18px 40px;border-radius:8px;text-decoration:none;font-weight:600;font-size:1.1rem;transition:all .3s ease;text-align:center;box-shadow:0 4px 12px #ca489840}
.cta-button-large:hover{transform:translateY(-2px);box-shadow:0 6px 20px #ca489859}
.cta-button-outline{background:#fff;color:#CA4898;padding:18px 40px;border-radius:8px;text-decoration:none;font-weight:600;font-size:1.1rem;transition:all .3s ease;text-align:center;border:2px solid #D39BA6}
.cta-button-outline:hover{background:#fafbfc;border-color:#CA4898}
.cta-image-column img{width:100%;height:380px;object-fit:cover;border-radius:12px;box-shadow:0 8px 32px #343a401f}
@media (max-width: 968px) {
.hero-content-wrapper{grid-template-columns:1fr;gap:40px}
.hero-text-block h1{font-size:2.4rem}
.hero-image-block img{height:320px}
.process-grid-layout{grid-template-columns:1fr;gap:24px}
.expertise-split-layout{grid-template-columns:1fr;gap:40px}
.expertise-visual-side img{height:360px}
.testimonial-masonry-grid{grid-template-columns:1fr}
.stats-content-wrapper{grid-template-columns:repeat(2,1fr);gap:24px}
.cta-content-container{grid-template-columns:1fr;gap:40px}
}
@media (max-width: 640px) {
.index-hero-main{padding:60px 20px 40px}
.hero-text-block h1{font-size:2rem}
.hero-text-block p{font-size:1rem}
.hero-cta-group{flex-direction:column}
.hero-btn-primary,.hero-btn-secondary{width:100%;text-align:center}
.section-header-centered h2{font-size:2rem}
.expertise-content-side h2{font-size:1.9rem}
.stats-content-wrapper{grid-template-columns:1fr}
.stat-number-display{font-size:2.4rem}
.cta-text-column h2{font-size:2rem}
}
.contact-hero-wrapper{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:80px 20px 60px;position:relative;overflow:hidden}
.contact-hero-wrapper::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ca489814 0%,transparent 70%);border-radius:50%}
.contact-hero-content{max-width:800px;margin:0 auto;text-align:center;position:relative;z-index:2}
.contact-hero-content h1{font-size:2.8rem;color:#212529;margin-bottom:20px;font-weight:700;line-height:1.2}
.contact-hero-content p{font-size:1.15rem;color:#495057;line-height:1.7;margin-bottom:0}
.contact-main-grid{max-width:1200px;margin:0 auto;padding:60px 20px;display:grid;grid-template-columns:1fr 1.5fr;gap:50px;align-items:start}
.contact-info-section{background:#fff;border:2px solid #E5C6D3;border-radius:12px;padding:40px 30px;position:sticky;top:20px}
.contact-info-section h2{font-size:1.8rem;color:#212529;margin-bottom:30px;font-weight:600}
.info-item-block{margin-bottom:30px;padding-bottom:30px;border-bottom:1px solid #f5f6fa}
.info-item-block:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}
.info-item-block h3{font-size:.9rem;color:#CA4898;text-transform:uppercase;letter-spacing:.5px;margin-bottom:10px;font-weight:600}
.info-item-block p{font-size:1rem;color:#343a40;line-height:1.6;margin:0}
.info-item-block a{color:#343a40;text-decoration:none;transition:color .3s ease}
.info-item-block a:hover{color:#CA4898}
.contact-form-wrapper{background:#fff;border-radius:12px;padding:50px 40px;box-shadow:0 2px 15px #0000000f}
.contact-form-wrapper h2{font-size:2rem;color:#212529;margin-bottom:15px;font-weight:600}
.contact-form-wrapper > p{font-size:1rem;color:#495057;margin-bottom:35px;line-height:1.6}
.form-group-custom{margin-bottom:25px}
.form-group-custom label{display:block;font-size:.95rem;color:#343a40;margin-bottom:8px;font-weight:500}
.form-group-custom input,.form-group-custom textarea,.form-group-custom select{width:100%;padding:14px 16px;border:2px solid #E5C6D3;border-radius:8px;font-size:1rem;color:#343a40;background:#fafbfc;transition:all .3s ease;font-family:inherit}
.form-group-custom input:focus,.form-group-custom textarea:focus,.form-group-custom select:focus{outline:none;border-color:#CA4898;background:#fff;box-shadow:0 0 0 3px #ca48981a}
.form-group-custom textarea{resize:vertical;min-height:140px}
.form-row-split{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.checkbox-wrapper{margin:30px 0;display:flex;align-items:start;gap:12px}
.checkbox-wrapper input[type="checkbox"]{width:20px;height:20px;margin-top:2px;cursor:pointer;flex-shrink:0}
.checkbox-wrapper label{font-size:.95rem;color:#495057;line-height:1.5;cursor:pointer}
.checkbox-wrapper label a{color:#CA4898;text-decoration:underline}
.checkbox-wrapper label a:hover{color:#D39BA6}
.submit-btn-custom{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;border:none;padding:16px 45px;font-size:1.05rem;font-weight:600;border-radius:8px;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 12px #ca489840;position:relative;z-index:10}
.submit-btn-custom:hover{transform:translateY(-2px);box-shadow:0 6px 18px #ca489859}
.submit-btn-custom:active{transform:translateY(0)}
.visual-section-content{max-width:1200px;margin:0 auto;padding:60px 20px;background:#fff}
.visual-grid-layout{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.visual-text-block h2{font-size:2.2rem;color:#212529;margin-bottom:20px;font-weight:600;line-height:1.3}
.visual-text-block p{font-size:1.05rem;color:#495057;line-height:1.7;margin-bottom:15px}
.visual-image-block img{width:100%;height:auto;border-radius:12px;box-shadow:0 8px 25px #00000014}
.support-options-area{background:linear-gradient(180deg,#f8f9fa 0%,#fff 100%);padding:70px 20px}
.support-options-inner{max-width:1000px;margin:0 auto}
.support-options-inner h2{font-size:2.2rem;color:#212529;text-align:center;margin-bottom:50px;font-weight:600}
.support-cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.support-card-item{background:#fff;padding:35px 25px;border-radius:12px;border:2px solid #E5C6D3;text-align:center;transition:all .3s ease}
.support-card-item:hover{border-color:#CA4898;transform:translateY(-5px);box-shadow:0 8px 20px #ca489826}
.support-card-icon{width:60px;height:60px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:1.8rem;color:#fff}
.support-card-item h3{font-size:1.3rem;color:#212529;margin-bottom:12px;font-weight:600}
.support-card-item p{font-size:.95rem;color:#495057;line-height:1.6;margin:0}
.office-hours-section{max-width:900px;margin:0 auto;padding:60px 20px;background:#fafbfc;border-radius:12px}
.office-hours-section h2{font-size:2rem;color:#212529;text-align:center;margin-bottom:40px;font-weight:600}
.hours-table-wrapper{background:#fff;border-radius:8px;overflow:hidden;border:2px solid #E5C6D3}
.hours-table-wrapper table{width:100%;border-collapse:collapse}
.hours-table-wrapper th,.hours-table-wrapper td{padding:18px 25px;text-align:left;border-bottom:1px solid #f5f6fa}
.hours-table-wrapper th{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;font-weight:600;font-size:1rem;text-transform:uppercase;letter-spacing:.5px}
.hours-table-wrapper td{color:#343a40;font-size:1rem}
.hours-table-wrapper tr:last-child td{border-bottom:none}
.hours-table-wrapper tr:nth-child(even){background:#fafbfc}
@media (max-width: 992px) {
.contact-main-grid{grid-template-columns:1fr;gap:40px}
.contact-info-section{position:static}
.visual-grid-layout{grid-template-columns:1fr;gap:30px}
.visual-image-block{order:-1}
.support-cards-grid{grid-template-columns:1fr;gap:25px}
}
@media (max-width: 768px) {
.contact-hero-wrapper{padding:60px 20px 40px}
.contact-hero-content h1{font-size:2rem}
.contact-hero-content p{font-size:1rem}
.contact-form-wrapper{padding:35px 25px}
.form-row-split{grid-template-columns:1fr;gap:0}
.contact-form-wrapper h2{font-size:1.6rem}
.visual-text-block h2{font-size:1.7rem}
.support-options-inner h2{font-size:1.8rem}
.hours-table-wrapper th,.hours-table-wrapper td{padding:14px 15px;font-size:.9rem}
}
@media (max-width: 480px) {
.contact-hero-content h1{font-size:1.7rem}
.contact-form-wrapper{padding:25px 20px}
.submit-btn-custom{width:100%;padding:14px 30px}
}
.services-main-wrapper{background:#fff;min-height:100vh}
.services-hero-block{background:linear-gradient(135deg,#fafbfc 0%,#f5f6fa 100%);padding:5rem 2rem 4rem;position:relative;overflow:hidden}
.services-hero-block::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ca489814 0%,transparent 70%);border-radius:50%}
.services-hero-content{max-width:720px;margin:0 auto;text-align:center;position:relative;z-index:2}
.services-hero-content h1{font-size:2.8rem;color:#212529;margin-bottom:1.5rem;font-weight:700;line-height:1.2}
.services-hero-content .lead-text{font-size:1.25rem;color:#495057;line-height:1.7;margin-bottom:2rem}
.services-feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-top:3rem}
.feature-card-mini{background:#fff;padding:1.5rem;border-radius:12px;box-shadow:0 2px 8px #0000000f;transition:transform .3s ease,box-shadow .3s ease}
.feature-card-mini:hover{transform:translateY(-4px);box-shadow:0 6px 16px #ca489826}
.feature-card-mini h3{font-size:1.1rem;color:#CA4898;margin-bottom:.5rem;font-weight:600}
.feature-card-mini p{font-size:.95rem;color:#495057;line-height:1.5;margin:0}
.services-detailed-section{padding:5rem 2rem;background:#fff}
.services-detailed-inner{max-width:1200px;margin:0 auto}
.services-grid-layout{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.service-content-left{position:sticky;top:2rem}
.service-content-left h2{font-size:2.2rem;color:#212529;margin-bottom:1.5rem;font-weight:700;line-height:1.3}
.service-content-left p{font-size:1.05rem;color:#495057;line-height:1.7;margin-bottom:1.25rem}
.service-image-wrapper{border-radius:16px;overflow:hidden;box-shadow:0 8px 24px #0000001a;margin-top:2rem}
.service-image-wrapper img{width:100%;height:380px;object-fit:cover;display:block}
.service-cards-right{display:flex;flex-direction:column;gap:2rem}
.service-detail-card{background:linear-gradient(135deg,#f8f9fa 0%,#fafbfc 100%);padding:2rem;border-radius:16px;border-left:4px solid #CA4898;transition:all .3s ease}
.service-detail-card:hover{border-left-width:6px;box-shadow:0 4px 16px #ca48981f}
.service-detail-card h3{font-size:1.4rem;color:#212529;margin-bottom:1rem;font-weight:600}
.service-detail-card p{font-size:1rem;color:#495057;line-height:1.6;margin-bottom:1rem}
.service-detail-card ul{list-style:none;padding:0;margin:1rem 0 0}
.service-detail-card ul li{font-size:.95rem;color:#495057;padding:.5rem 0 .5rem 1.5rem;position:relative;line-height:1.5}
.service-detail-card ul li::before{content:'→';position:absolute;left:0;color:#CA4898;font-weight:700}
.services-process-section{padding:5rem 2rem;background:linear-gradient(180deg,#fafbfc 0%,#f8f9fa 100%);position:relative}
.services-process-container{max-width:1100px;margin:0 auto}
.process-header{text-align:center;margin-bottom:4rem}
.process-header h2{font-size:2.4rem;color:#212529;margin-bottom:1rem;font-weight:700}
.process-header p{font-size:1.15rem;color:#495057;max-width:680px;margin:0 auto;line-height:1.6}
.process-timeline-wrapper{position:relative;padding-left:4rem}
.process-timeline-wrapper::before{content:'';position:absolute;left:20px;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#CA4898 0%,#E5C6D3 100%)}
.process-step-item{position:relative;margin-bottom:3rem;padding-left:2rem}
.process-step-item:last-child{margin-bottom:0}
.process-step-marker{position:absolute;left:-3rem;top:0;width:42px;height:42px;background:#CA4898;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:1.1rem;box-shadow:0 4px 12px #ca48984d;z-index:2}
.process-step-content{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 3px 12px #00000014}
.process-step-content h3{font-size:1.35rem;color:#212529;margin-bottom:.75rem;font-weight:600}
.process-step-content p{font-size:1rem;color:#495057;line-height:1.6;margin:0}
.process-images-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem}
.process-image-box{border-radius:12px;overflow:hidden;box-shadow:0 6px 20px #0000001a}
.process-image-box img{width:100%;height:280px;object-fit:cover;display:block}
.services-testimonial-section{padding:5rem 2rem;background:#fff}
.testimonial-container-main{max-width:1000px;margin:0 auto}
.testimonial-heading{text-align:center;margin-bottom:3.5rem}
.testimonial-heading h2{font-size:2.2rem;color:#212529;margin-bottom:.75rem;font-weight:700}
.testimonial-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem}
.testimonial-card-block{background:linear-gradient(135deg,#f8f9fa 0%,#fafbfc 100%);padding:2rem;border-radius:16px;box-shadow:0 4px 16px #0000000f;display:flex;flex-direction:column;gap:1.5rem}
.testimonial-profile-header{display:flex;align-items:center;gap:1.25rem}
.testimonial-profile-img{width:64px;height:64px;border-radius:50%;object-fit:cover;border:3px solid #CA4898}
.testimonial-profile-info h4{font-size:1.1rem;color:#212529;margin:0 0 .25rem;font-weight:600}
.testimonial-profile-info p{font-size:.9rem;color:#6c757d;margin:0}
.testimonial-text-content{font-size:1rem;color:#495057;line-height:1.7;font-style:italic}
.services-cta-section{padding:4rem 2rem;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);text-align:center}
.cta-content-wrapper{max-width:700px;margin:0 auto}
.cta-content-wrapper h2{font-size:2rem;color:#fff;margin-bottom:1rem;font-weight:700}
.cta-content-wrapper p{font-size:1.1rem;color:#fff;margin-bottom:2rem;line-height:1.6}
.cta-button-primary{display:inline-block;padding:1rem 2.5rem;background:#fff;color:#CA4898;font-size:1.05rem;font-weight:600;border-radius:8px;text-decoration:none;transition:all .3s ease;box-shadow:0 4px 12px #00000026}
.cta-button-primary:hover{transform:translateY(-2px);box-shadow:0 6px 20px #00000040;color:#CA4898}
@media (max-width: 768px) {
.services-hero-content h1{font-size:2rem}
.services-hero-content .lead-text{font-size:1.05rem}
.services-feature-grid{grid-template-columns:1fr;gap:1rem}
.services-grid-layout{grid-template-columns:1fr;gap:2rem}
.service-content-left{position:static}
.service-content-left h2{font-size:1.75rem}
.service-image-wrapper{margin-top:1.5rem}
.service-image-wrapper img{height:260px}
.process-timeline-wrapper{padding-left:3rem}
.process-step-marker{left:-2.5rem;width:36px;height:36px;font-size:1rem}
.process-images-grid{grid-template-columns:1fr;gap:1.5rem}
.process-image-box img{height:220px}
.testimonial-grid{grid-template-columns:1fr;gap:1.5rem}
.process-header h2{font-size:1.85rem}
.cta-content-wrapper h2{font-size:1.65rem}
}
.whychoose-wrapper{background:#fff;min-height:100vh}
.whychoose-hero-section{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:80px 20px 60px;position:relative;overflow:hidden}
.whychoose-hero-section::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#ca489814 0%,transparent 70%);border-radius:50%}
.whychoose-hero-content{max-width:1200px;margin:0 auto;position:relative;z-index:2}
.whychoose-hero-title{font-size:2.8rem;color:#212529;font-weight:700;margin-bottom:20px;line-height:1.2}
.whychoose-hero-subtitle{font-size:1.2rem;color:#495057;line-height:1.7;max-width:800px;margin-bottom:0}
.whychoose-approach-block{padding:100px 20px;background:#fff;position:relative}
.whychoose-approach-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.whychoose-approach-text h2{font-size:2.2rem;color:#212529;font-weight:700;margin-bottom:25px;line-height:1.3}
.whychoose-approach-text p{font-size:1.05rem;color:#495057;line-height:1.8;margin-bottom:20px}
.whychoose-approach-img{border-radius:12px;overflow:hidden;box-shadow:0 8px 30px #00000014;transform:rotate(-2deg);transition:transform .4s ease}
.whychoose-approach-img:hover{transform:rotate(0deg) scale(1.02)}
.whychoose-approach-img img{width:100%;height:450px;object-fit:cover;display:block}
.whychoose-difference-section{background:linear-gradient(165deg,#f8f9fa 0%,#fff 100%);padding:90px 20px;position:relative}
.whychoose-difference-section::after{content:'';position:absolute;bottom:-5%;left:-5%;width:400px;height:400px;background:radial-gradient(circle,#d39ba61a 0%,transparent 70%);border-radius:50%}
.whychoose-difference-wrap{max-width:1200px;margin:0 auto;position:relative;z-index:2}
.whychoose-difference-header{text-align:center;margin-bottom:70px}
.whychoose-difference-header h2{font-size:2.4rem;color:#212529;font-weight:700;margin-bottom:18px}
.whychoose-difference-header p{font-size:1.1rem;color:#495057;max-width:700px;margin:0 auto;line-height:1.7}
.whychoose-cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:35px}
.whychoose-diff-card{background:#fff;padding:40px 30px;border-radius:10px;border:2px solid #f5f6fa;transition:all .3s ease;position:relative}
.whychoose-diff-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:0;background:linear-gradient(180deg,#CA4898 0%,#D39BA6 100%);transition:height .3s ease;border-radius:10px 0 0 10px}
.whychoose-diff-card:hover::before{height:100%}
.whychoose-diff-card:hover{border-color:#E5C6D3;box-shadow:0 10px 35px #ca48981f;transform:translateY(-5px)}
.whychoose-card-number{font-size:2.8rem;font-weight:800;color:#CA4898;opacity:.15;line-height:1;margin-bottom:15px}
.whychoose-diff-card h3{font-size:1.4rem;color:#212529;font-weight:700;margin-bottom:15px;line-height:1.3}
.whychoose-diff-card p{font-size:1rem;color:#495057;line-height:1.7;margin-bottom:0}
.whychoose-team-block{padding:90px 20px;background:#fff}
.whychoose-team-container{max-width:1200px;margin:0 auto}
.whychoose-team-intro{max-width:900px;margin:0 auto 60px;text-align:center}
.whychoose-team-intro h2{font-size:2.3rem;color:#212529;font-weight:700;margin-bottom:20px}
.whychoose-team-intro p{font-size:1.05rem;color:#495057;line-height:1.8}
.whychoose-team-members{display:grid;grid-template-columns:repeat(3,1fr);gap:45px}
.whychoose-member-card{background:#fafbfc;border-radius:14px;overflow:hidden;transition:all .35s ease;border:1px solid #f5f6fa}
.whychoose-member-card:hover{transform:translateY(-8px);box-shadow:0 15px 40px #0000001a;border-color:#E5C6D3}
.whychoose-member-photo{width:100%;height:280px;overflow:hidden;position:relative}
.whychoose-member-photo::after{content:'';position:absolute;bottom:0;left:0;right:0;height:60px;background:linear-gradient(to top,#ca489826,transparent)}
.whychoose-member-photo img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.whychoose-member-card:hover .whychoose-member-photo img{transform:scale(1.08)}
.whychoose-member-info{padding:28px 25px}
.whychoose-member-info h3{font-size:1.3rem;color:#212529;font-weight:700;margin-bottom:8px}
.whychoose-member-role{font-size:.95rem;color:#CA4898;font-weight:600;margin-bottom:14px;display:block}
.whychoose-member-info p{font-size:.98rem;color:#495057;line-height:1.7;margin-bottom:0}
.whychoose-results-section{background:linear-gradient(180deg,#fafbfc 0%,#f8f9fa 50%,#fff 100%);padding:100px 20px;position:relative}
.whychoose-results-wrapper{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:45% 55%;gap:70px;align-items:center}
.whychoose-results-image{position:relative}
.whychoose-results-image::before{content:'';position:absolute;top:-15px;left:-15px;right:15px;bottom:15px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);border-radius:12px;opacity:.1;z-index:1}
.whychoose-results-image img{width:100%;height:500px;object-fit:cover;border-radius:12px;box-shadow:0 12px 40px #0000001f;position:relative;z-index:2}
.whychoose-results-content h2{font-size:2.3rem;color:#212529;font-weight:700;margin-bottom:28px;line-height:1.3}
.whychoose-results-list{list-style:none;padding:0;margin:0}
.whychoose-results-list li{padding:22px 0;border-bottom:1px solid #f5f6fa;display:flex;align-items:flex-start;gap:18px}
.whychoose-results-list li:last-child{border-bottom:none}
.whychoose-result-icon{width:50px;height:50px;min-width:50px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.3rem;color:#fff;font-weight:700}
.whychoose-result-text h3{font-size:1.2rem;color:#212529;font-weight:700;margin-bottom:8px;line-height:1.3}
.whychoose-result-text p{font-size:1rem;color:#495057;line-height:1.7;margin-bottom:0}
@media (max-width: 992px) {
.whychoose-hero-title{font-size:2.2rem}
.whychoose-approach-container{grid-template-columns:1fr;gap:40px}
.whychoose-approach-img{transform:rotate(0deg)}
.whychoose-cards-grid{grid-template-columns:1fr;gap:25px}
.whychoose-team-members{grid-template-columns:1fr;gap:35px}
.whychoose-results-wrapper{grid-template-columns:1fr;gap:50px}
}
@media (max-width: 768px) {
.whychoose-hero-section{padding:60px 20px 40px}
.whychoose-hero-title{font-size:1.9rem}
.whychoose-hero-subtitle{font-size:1.05rem}
.whychoose-approach-block{padding:60px 20px}
.whychoose-approach-text h2{font-size:1.8rem}
.whychoose-approach-img img{height:350px}
.whychoose-difference-section{padding:60px 20px}
.whychoose-difference-header h2{font-size:1.9rem}
.whychoose-team-block{padding:60px 20px}
.whychoose-team-intro h2{font-size:1.9rem}
.whychoose-results-section{padding:60px 20px}
.whychoose-results-content h2{font-size:1.9rem}
.whychoose-results-image img{height:400px}
}
.cookie-policy-wrapper{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);min-height:100vh;padding:60px 20px}
.cookie-policy-container{max-width:900px;margin:0 auto;background:#fff;border-radius:12px;box-shadow:0 4px 20px #ca489814;padding:50px 60px}
.cookie-policy-header{text-align:center;margin-bottom:50px;padding-bottom:30px;border-bottom:3px solid #E5C6D3}
.cookie-policy-header h1{font-size:2.8rem;color:#212529;margin-bottom:15px;font-weight:700;letter-spacing:-.5px}
.cookie-policy-date{color:#CA4898;font-size:1rem;font-weight:500;text-transform:uppercase;letter-spacing:1px}
.cookie-intro-section{background:linear-gradient(to right,#fafbfc,#fff);padding:35px;border-left:5px solid #CA4898;margin-bottom:45px;border-radius:8px}
.cookie-intro-section p{color:#343a40;font-size:1.1rem;line-height:1.8;margin:0}
.cookie-content-section{margin-bottom:45px}
.cookie-section-title{color:#CA4898;font-size:1.9rem;margin-bottom:20px;font-weight:600;padding-bottom:12px;border-bottom:2px solid #E5C6D3}
.cookie-subsection-title{color:#495057;font-size:1.4rem;margin:30px 0 18px;font-weight:600}
.cookie-text-block p{color:#343a40;font-size:1.05rem;line-height:1.75;margin-bottom:20px}
.cookie-types-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px;margin:35px 0}
.cookie-type-card{background:linear-gradient(135deg,#fff 0%,#fafbfc 100%);padding:30px;border-radius:10px;border:2px solid #E5C6D3;transition:all .3s ease}
.cookie-type-card:hover{transform:translateY(-5px);box-shadow:0 8px 25px #ca48981f;border-color:#D39BA6}
.cookie-type-header{display:flex;align-items:center;margin-bottom:15px}
.cookie-type-icon{width:45px;height:45px;background:linear-gradient(135deg,#CA4898,#D39BA6);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:15px;flex-shrink:0}
.cookie-type-icon::before{content:'';width:20px;height:20px;background:#fff;border-radius:50%}
.cookie-type-name{color:#212529;font-size:1.3rem;font-weight:600;margin:0}
.cookie-type-description{color:#495057;font-size:1rem;line-height:1.7;margin:0}
.cookie-usage-list{background:#f8f9fa;padding:30px 35px;border-radius:8px;margin:30px 0}
.cookie-usage-list ul{list-style:none;padding:0;margin:0}
.cookie-usage-list li{color:#343a40;font-size:1.05rem;line-height:1.7;margin-bottom:15px;padding-left:35px;position:relative}
.cookie-usage-list li::before{content:'';position:absolute;left:0;color:#CA4898;font-weight:700;font-size:1.3rem}
.cookie-control-box{background:linear-gradient(135deg,#E5C6D3 0%,#D39BA6 100%);padding:40px;border-radius:12px;margin:40px 0}
.cookie-control-box h3{color:#fff;font-size:1.6rem;margin-bottom:20px;font-weight:600}
.cookie-control-box p{color:#fff;font-size:1.05rem;line-height:1.75;margin-bottom:15px}
.browser-guide-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:20px;margin-top:30px}
.browser-card{background:#fff;padding:20px;border-radius:8px;text-align:center;transition:transform .3s ease}
.browser-card:hover{transform:scale(1.05)}
.browser-card strong{color:#CA4898;font-size:1.1rem;display:block;margin-bottom:8px}
.browser-card span{color:#495057;font-size:.95rem}
.retention-info-box{background:#fff;border:2px solid #D39BA6;padding:35px;border-radius:10px;margin:35px 0}
.retention-info-box h4{color:#CA4898;font-size:1.4rem;margin-bottom:18px;font-weight:600}
.retention-info-box p{color:#343a40;font-size:1.05rem;line-height:1.75;margin-bottom:15px}
.retention-timeline{display:flex;flex-direction:column;gap:20px;margin-top:25px}
.retention-item{display:flex;align-items:flex-start;padding:20px;background:#f8f9fa;border-radius:8px;border-left:4px solid #CA4898}
.retention-period{background:linear-gradient(135deg,#CA4898,#D39BA6);color:#fff;padding:8px 16px;border-radius:20px;font-weight:600;font-size:.95rem;margin-right:20px;white-space:nowrap;min-width:120px;text-align:center}
.retention-details{flex:1}
.retention-details strong{color:#212529;display:block;margin-bottom:8px;font-size:1.1rem}
.retention-details span{color:#495057;font-size:1rem;line-height:1.6}
.contact-banner{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);padding:45px;border-radius:12px;text-align:center;margin-top:50px}
.contact-banner h3{color:#fff;font-size:1.8rem;margin-bottom:20px;font-weight:600}
.contact-banner p{color:#fff;font-size:1.1rem;line-height:1.7;margin-bottom:25px}
.contact-details-group{display:flex;justify-content:center;gap:40px;flex-wrap:wrap;margin-top:25px}
.contact-detail-item{color:#fff;font-size:1.05rem}
.contact-detail-item strong{display:block;margin-bottom:8px;font-size:.9rem;opacity:.9;text-transform:uppercase;letter-spacing:1px}
@media (max-width: 768px) {
.cookie-policy-container{padding:35px 25px}
.cookie-policy-header h1{font-size:2.2rem}
.cookie-section-title{font-size:1.6rem}
.cookie-types-grid{grid-template-columns:1fr}
.browser-guide-grid{grid-template-columns:1fr}
.retention-item{flex-direction:column}
.retention-period{margin-right:0;margin-bottom:15px}
.contact-details-group{flex-direction:column;gap:25px}
}
@media (max-width: 480px) {
.cookie-policy-wrapper{padding:30px 15px}
.cookie-policy-container{padding:25px 20px}
.cookie-policy-header h1{font-size:1.9rem}
.cookie-intro-section{padding:25px}
.cookie-control-box{padding:30px 25px}
.contact-banner{padding:35px 25px}
}
.privacy-policy-wrapper{background:#fff;min-height:100vh;padding:0}
.privacy-hero-section{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);padding:80px 20px 60px;text-align:center;border-bottom:3px solid #E5C6D3}
.privacy-hero-section h1{font-size:2.8rem;color:#212529;margin-bottom:20px;font-weight:700;letter-spacing:-.5px}
.privacy-last-updated{font-size:1rem;color:#495057;font-weight:500;background:#fff;display:inline-block;padding:12px 28px;border-radius:25px;box-shadow:0 2px 8px #00000014}
.privacy-content-container{max-width:900px;margin:0 auto;padding:60px 30px 80px;background:#fff}
.privacy-intro-block{background:#fafbfc;padding:35px;border-left:5px solid #CA4898;margin-bottom:50px;border-radius:8px}
.privacy-intro-block p{font-size:1.1rem;line-height:1.75;color:#343a40;margin:0}
.privacy-section-block{margin-bottom:45px;padding-bottom:40px;border-bottom:1px solid #E5C6D3}
.privacy-section-block:last-child{border-bottom:none}
.privacy-section-block h2{font-size:1.9rem;color:#CA4898;margin-bottom:20px;font-weight:600;position:relative;padding-left:0}
.privacy-section-block h3{font-size:1.4rem;color:#212529;margin:30px 0 15px;font-weight:600}
.privacy-section-block p{font-size:1.05rem;line-height:1.8;color:#495057;margin-bottom:18px}
.privacy-section-block ul{margin:20px 0;padding-left:25px}
.privacy-section-block ul li{font-size:1.05rem;line-height:1.75;color:#495057;margin-bottom:12px;position:relative;padding-left:10px}
.privacy-section-block ul li::marker{color:#CA4898}
.privacy-highlight-box{background:linear-gradient(to right,#fafbfc 0%,#f8f9fa 100%);padding:28px;border-radius:10px;margin:25px 0;border:2px solid #E5C6D3}
.privacy-highlight-box h4{font-size:1.2rem;color:#CA4898;margin-bottom:12px;font-weight:600}
.privacy-highlight-box p{margin:0;color:#343a40}
.privacy-data-table{width:100%;margin:25px 0;border-collapse:separate;border-spacing:0;border-radius:8px;overflow:hidden;box-shadow:0 2px 10px #0000000f}
.privacy-data-table th{background:#CA4898;color:#fff;padding:16px;text-align:left;font-weight:600;font-size:1.05rem}
.privacy-data-table td{background:#fafbfc;padding:16px;border-bottom:1px solid #E5C6D3;color:#495057;font-size:1rem;line-height:1.6}
.privacy-data-table tr:last-child td{border-bottom:none}
.privacy-contact-section{background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);padding:45px;border-radius:12px;margin-top:50px;text-align:center}
.privacy-contact-section h2{color:#fff;font-size:2rem;margin-bottom:20px;font-weight:600}
.privacy-contact-section p{color:#fff;font-size:1.1rem;line-height:1.7;margin-bottom:25px}
.privacy-contact-details{display:flex;flex-direction:column;gap:15px;margin-top:25px}
.privacy-contact-item{background:#ffffff26;padding:18px 25px;border-radius:8px;color:#fff;font-size:1.05rem;font-weight:500;backdrop-filter:blur(10px)}
.privacy-contact-item a{color:#fff;text-decoration:none;border-bottom:2px solid #fff6;transition:border-color .3s ease}
.privacy-contact-item a:hover{border-bottom-color:#fff}
.privacy-rights-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px;margin:30px 0}
.privacy-rights-card{background:#f8f9fa;padding:28px;border-radius:10px;border-top:4px solid #CA4898;transition:transform .3s ease,box-shadow .3s ease}
.privacy-rights-card:hover{transform:translateY(-4px);box-shadow:0 8px 20px #ca489826}
.privacy-rights-card h4{color:#CA4898;font-size:1.25rem;margin-bottom:12px;font-weight:600}
.privacy-rights-card p{color:#495057;margin:0;font-size:1rem;line-height:1.65}
.privacy-effective-notice{text-align:center;padding:25px;background:#fafbfc;border-radius:8px;margin-top:40px}
.privacy-effective-notice p{color:#343a40;font-size:1.05rem;margin:0;font-weight:500}
@media (max-width: 768px) {
.privacy-hero-section{padding:60px 20px 40px}
.privacy-hero-section h1{font-size:2rem}
.privacy-content-container{padding:40px 20px 60px}
.privacy-section-block h2{font-size:1.5rem}
.privacy-section-block h3{font-size:1.2rem}
.privacy-intro-block{padding:25px}
.privacy-rights-grid{grid-template-columns:1fr}
.privacy-contact-section{padding:35px 25px}
.privacy-data-table{font-size:.9rem}
.privacy-data-table th,.privacy-data-table td{padding:12px}
}
@media (max-width: 480px) {
.privacy-hero-section h1{font-size:1.75rem}
.privacy-last-updated{font-size:.9rem;padding:10px 20px}
.privacy-section-block h2{font-size:1.3rem}
}
.success-page-wrapper{background:linear-gradient(135deg,#fafbfc 0%,#f8f9fa 100%);min-height:100vh;padding:60px 20px}
.success-container-main{max-width:720px;margin:0 auto;background:#fff;border-radius:16px;box-shadow:0 4px 24px #ca489814;padding:50px 40px;position:relative;overflow:hidden}
.success-container-main::before{content:'';position:absolute;top:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#CA4898 0%,#D39BA6 50%,#E5C6D3 100%)}
.success-icon-area{text-align:center;margin-bottom:35px}
.success-checkmark-circle{width:85px;height:85px;background:linear-gradient(135deg,#E5C6D3 0%,#D39BA6 100%);border-radius:50%;margin:0 auto;display:flex;align-items:center;justify-content:center;position:relative;animation:successPulse .6s ease-out}
@keyframes successPulse {
0%{transform:scale(0.3);opacity:0}
50%{transform:scale(1.1)}
100%{transform:scale(1);opacity:1}
}
.success-checkmark-circle::after{content:'';font-size:48px;color:#fff;font-weight:700;line-height:1}
.success-main-heading{font-size:36px;font-weight:700;color:#212529;text-align:center;margin:0 0 16px;letter-spacing:-.5px}
.success-subheading-text{font-size:18px;color:#495057;text-align:center;margin:0 0 40px;line-height:1.6}
.success-message-block{background:#f8f9fa;border-left:4px solid #CA4898;padding:28px 32px;margin-bottom:35px;border-radius:8px}
.success-message-block p{margin:0 0 18px;font-size:16px;color:#343a40;line-height:1.7}
.success-message-block p:last-child{margin-bottom:0}
.success-message-block strong{color:#CA4898;font-weight:600}
.success-next-steps-area{margin-bottom:40px}
.success-steps-title{font-size:22px;font-weight:600;color:#212529;margin:0 0 24px}
.success-step-item{display:flex;gap:18px;margin-bottom:22px;align-items:flex-start}
.success-step-number{min-width:36px;height:36px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:16px;flex-shrink:0}
.success-step-content h3{font-size:17px;font-weight:600;color:#212529;margin:0 0 8px}
.success-step-content p{font-size:15px;color:#495057;margin:0;line-height:1.6}
.success-reference-info{background:#fff;border:2px dashed #D39BA6;border-radius:8px;padding:22px 28px;margin-bottom:35px;text-align:center}
.success-reference-info p{font-size:15px;color:#343a40;margin:0 0 10px;line-height:1.5}
.success-reference-number{color:#CA4898;letter-spacing:1px;font:700 24px monospace}
.success-actions-row{display:flex;gap:16px;margin-bottom:35px;flex-wrap:wrap}
.success-btn-primary{flex:1;min-width:200px;background:linear-gradient(135deg,#CA4898 0%,#D39BA6 100%);color:#fff;padding:16px 32px;border-radius:8px;text-decoration:none;font-weight:600;font-size:16px;text-align:center;border:none;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 12px #ca489826;display:inline-block}
.success-btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 16px #ca489840;color:#fff}
.success-btn-secondary{flex:1;min-width:200px;background:#fff;color:#CA4898;padding:16px 32px;border-radius:8px;text-decoration:none;font-weight:600;font-size:16px;text-align:center;border:2px solid #CA4898;cursor:pointer;transition:all .3s ease;display:inline-block}
.success-btn-secondary:hover{background:#CA4898;color:#fff;transform:translateY(-2px)}
.success-helpful-links{border-top:1px solid #e9ecef;padding-top:30px}
.success-links-title{font-size:19px;font-weight:600;color:#212529;margin:0 0 20px}
.success-links-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
.success-link-card{background:#fafbfc;padding:18px 20px;border-radius:8px;border:1px solid #e9ecef;text-decoration:none;transition:all .3s ease;display:block}
.success-link-card:hover{border-color:#D39BA6;background:#fff;transform:translateX(4px)}
.success-link-card h4{font-size:15px;font-weight:600;color:#CA4898;margin:0 0 6px}
.success-link-card p{font-size:13px;color:#495057;margin:0;line-height:1.4}
.success-footer-note{text-align:center;margin-top:35px;padding-top:25px;border-top:1px solid #e9ecef}
.success-footer-note p{font-size:14px;color:#6c757d;margin:0 0 8px;line-height:1.6}
.success-contact-link{color:#CA4898;text-decoration:none;font-weight:600;transition:color .3s ease}
.success-contact-link:hover{color:#D39BA6;text-decoration:underline}
@media (max-width: 768px) {
.success-page-wrapper{padding:40px 16px}
.success-container-main{padding:35px 24px}
.success-main-heading{font-size:28px}
.success-subheading-text{font-size:16px}
.success-actions-row{flex-direction:column}
.success-btn-primary,.success-btn-secondary{min-width:100%}
.success-links-grid{grid-template-columns:1fr}
.success-checkmark-circle{width:75px;height:75px}
.success-checkmark-circle::after{font-size:42px}
}
@media (max-width: 480px) {
.success-container-main{padding:28px 20px}
.success-message-block{padding:20px 24px}
.success-step-item{gap:14px}
.success-step-number{min-width:32px;height:32px;font-size:14px}
}