 :root {
     --primary: #3A2C6E;
     --secondary: #E85D75;
     --accent: #2BD9FE;
     --bg: #F7EDF0;
     --text: #1A1A2E;
     --random1: #8C5E58;
     --random2: #A8F9FF;
     --random3: #FF9A8B;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Courier New', 'Segoe UI', Tahoma, sans-serif;
 }

 body {
     background-color: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     line-height: 1.7;
 }

 /* Анимации */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(-1deg);
     }

     50% {
         transform: translateY(-20px) rotate(1deg);
     }
 }

 @keyframes shake {

     0%,
     100% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-5px);
     }

     75% {
         transform: translateX(5px);
     }
 }

 @keyframes colorShift {
     0% {
         background-color: var(--random1);
     }

     33% {
         background-color: var(--random2);
     }

     66% {
         background-color: var(--random3);
     }

     100% {
         background-color: var(--random1);
     }
 }

 /* Хедер */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(247, 237, 240, 0.9);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 1rem 2rem;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     border-bottom: 3px solid var(--secondary);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 900;
     color: var(--primary);
     text-decoration: none;
     letter-spacing: -1px;
 }

 .logo span {
     color: var(--secondary);
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 2rem;
 }

 nav ul li a {
     text-decoration: none;
     color: var(--text);
     font-weight: 600;
     position: relative;
     padding: 0.5rem 0;
 }

 nav ul li a:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background-color: var(--accent);
     transition: width 0.3s ease;
 }

 nav ul li a:hover:after {
     width: 100%;
 }

 .burger {
     display: none;
     cursor: pointer;
 }

 .burger div {
     width: 25px;
     height: 3px;
     background-color: var(--text);
     margin: 5px;
     transition: all 0.3s ease;
 }

 /* Главный контент */
 main {
     margin-top: 80px;
 }

 section {
     padding: 5rem 2rem;
     position: relative;
 }

 section:nth-child(odd) {
     background-color: rgba(234, 234, 234, 0.5);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
 }

 h1,
 h2,
 h3 {
     color: var(--primary);
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 h1 {
     font-size: 3.5rem;
     font-weight: 900;
     letter-spacing: -2px;
 }

 h2 {
     font-size: 2.5rem;
     font-weight: 800;
     letter-spacing: -1px;
 }

 h3 {
     font-size: 1.8rem;
     font-weight: 700;
 }

 p {
     margin-bottom: 1.5rem;
     max-width: 700px;
 }

 .btn {
     display: inline-block;
     padding: 0.8rem 2rem;
     background-color: var(--secondary);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     margin-top: 1rem;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn:hover {
     background-color: var(--primary);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .btn-accent {
     background-color: var(--accent);
     color: var(--text);
 }

 /* Герой секция */
 .hero {
     height: 90vh;
     min-height: 600px;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, var(--random2) 0%, var(--random1) 100%);
     clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
     margin-bottom: -5rem;
     color: white;
 }

 .hero h1,
 .hero p {
     color: white;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-image {
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 50%;
     max-width: 600px;
     animation: float 6s ease-in-out infinite;
 }

 /* О нас */
 .about {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 .about-image {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 20px 20px 0 var(--secondary);
     animation: shake 4s ease-in-out infinite;
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Услуги */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border-top: 5px solid var(--accent);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-icon {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: var(--secondary);
 }

 /* FAQ */
 .faq-item {
     margin-bottom: 1rem;
     border: 2px solid var(--primary);
     border-radius: 10px;
     overflow: hidden;
 }

 .faq-question {
     padding: 1.5rem;
     background-color: var(--primary);
     color: white;
     cursor: pointer;
     font-weight: 600;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-answer {
     padding: 1.5rem;
     background-color: white;
     display: none;
 }

 .faq-question.active+.faq-answer {
     display: block;
 }

 /* Форма */
 .form-container {
     background: white;
     padding: 3rem;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     max-width: 800px;
     margin: 0 auto;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 input,
 textarea {
     width: 100%;
     padding: 1rem;
     border: 2px solid #ddd;
     border-radius: 10px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 input:focus,
 textarea:focus {
     border-color: var(--accent);
     outline: none;
     box-shadow: 0 0 0 3px rgba(43, 217, 254, 0.3);
 }

 /* Контакты */
 .contact-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .contact-card {
     background: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     text-align: center;
 }

 .contact-icon {
     font-size: 2rem;
     color: var(--secondary);
     margin-bottom: 1rem;
 }

 /* Футер */
 footer {
     background-color: var(--primary);
     color: white;
     padding: 4rem 2rem 2rem;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-logo {
     font-size: 1.8rem;
     font-weight: 900;
     color: white;
     margin-bottom: 1rem;
     display: inline-block;
 }

 .footer-links h3 {
     color: white;
     margin-bottom: 1.5rem;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links ul li {
     margin-bottom: 0.8rem;
 }

 .footer-links ul li a {
     color: #ddd;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-links ul li a:hover {
     color: var(--accent);
     padding-left: 5px;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 3rem;
     margin-top: 3rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Cookie */
 .cookie-consent {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background: var(--primary);
     color: white;
     padding: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

 .cookie-consent.show {
     transform: translateY(0);
 }

 .cookie-consent p {
     margin-bottom: 0;
     max-width: 800px;
 }

 .cookie-btn {
     background: var(--accent);
     color: var(--text);
     border: none;
     padding: 0.5rem 1.5rem;
     border-radius: 50px;
     cursor: pointer;
     font-weight: 600;
     margin-left: 1rem;
     white-space: nowrap;
 }

 /* Дисклеймер */
 .disclaimer {
     background-color: #ffebee;
     padding: 2rem;
     border-left: 5px solid #f44336;
     margin: 3rem 0;
 }

 /* Адаптив */
 @media (max-width: 992px) {
     h1 {
         font-size: 2.8rem;
     }

     h2 {
         font-size: 2.2rem;
     }

     .hero {
         height: auto;
         padding: 35px 15px;
         clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
     }

     .hero-image {
         position: relative;
         width: 100%;
         max-width: none;
         margin-top: 3rem;
         transform: none;
     }

     .about {
         grid-template-columns: 1fr;
     }

     .about-image {
         order: -1;
     }
 }

 @media (max-width: 768px) {
     nav ul {
         position: fixed;
         top: 80px;
         left: 0;
         width: 100%;
         background: var(--bg);
         flex-direction: column;
         align-items: center;
         padding: 2rem 0;
         clip-path: circle(0px at 90% -10%);
         transition: all 0.5s ease-out;
         pointer-events: none;
     }

     nav ul.open {
         clip-path: circle(1000px at 90% -10%);
         pointer-events: all;
     }

     nav ul li {
         margin: 1rem 0;
     }

     .burger {
         display: block;
             margin-left: auto;
     }

     .burger.active div:nth-child(1) {
         transform: rotate(-45deg) translate(-5px, 6px);
     }

     .burger.active div:nth-child(2) {
         opacity: 0;
     }

     .burger.active div:nth-child(3) {
         transform: rotate(45deg) translate(-5px, -6px);
     }

     .cookie-consent {
         flex-direction: column;
         text-align: center;
     }

     .cookie-btns {
         margin-top: 1rem;
     }
 }

 @media (max-width: 576px) {
     h1 {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     section {
         padding: 3rem 1.5rem;
     }

     .form-container {
         padding: 2rem 1.5rem;
     }
 }

 /* Случайные элементы */
 .random-shape {
     position: absolute;
     width: 100px;
     height: 100px;
     background-color: var(--random3);
     opacity: 0.7;
     z-index: -1;
     animation: colorShift 15s infinite;
 }

 .shape1 {
     top: 20%;
     left: 5%;
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     animation-delay: 0s;
 }

 .shape2 {
     bottom: 10%;
     right: 8%;
     width: 150px;
     height: 150px;
     border-radius: 50%;
     animation-delay: 3s;
 }

 .shape3 {
     top: 50%;
     left: 50%;
     width: 80px;
     height: 80px;
     border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
     animation-delay: 6s;
 }

 .floating-atm {
     position: absolute;
     width: 200px;
     animation: float 8s ease-in-out infinite;
     opacity: 0.8;
     z-index: -1;
 }

 .atm1 {
     top: 30%;
     right: 10%;
     animation-delay: 1s;
 }

 .atm2 {
     bottom: 20%;
     left: 5%;
     animation-delay: 3s;
 }

 .pulsing-circle {
     position: absolute;
     width: 50px;
     height: 50px;
     background-color: var(--accent);
     border-radius: 50%;
     opacity: 0.5;
     animation: pulse 3s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.5);
         opacity: 0.2;
     }

     100% {
         transform: scale(1);
         opacity: 0.5;
     }
 }

 .circle1 {
     top: 40%;
     left: 15%;
 }

 .circle2 {
     bottom: 30%;
     right: 20%;
     animation-delay: 1.5s;
 }