
:root {
--primary: #4A2C82;
--secondary: #FF6B9E;
--accent: #00D4C6;
--dark: #1A1A2E;
--light: #F5F5F7;
--text: #333344;
--text-light: #777788;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: var(--light);
color: var(--text);
line-height: 1.6;
padding-top: 80px;
}

header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
padding: 15px 0;
backdrop-filter: blur(5px);
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
display: flex;
align-items: center;
}

.logo span {
color: var(--secondary);
}

.nav-links {
display: flex;
list-style: none;
}

.nav-links li {
margin-left: 30px;
}

.nav-links a {
text-decoration: none;
color: var(--text);
font-weight: 500;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--primary);
}

.burger {
display: none;
cursor: pointer;
}

.burger div {
width: 25px;
height: 3px;
background-color: var(--primary);
margin: 5px;
transition: all 0.3s ease;
}

section {
padding: 80px 0;
}

.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: white;
text-align: center;
padding: 120px 0;
position: relative;
overflow: hidden;
}

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
animation: fadeIn 1s ease-out;
}

.hero p {
font-size: 20px;
max-width: 700px;
margin: 0 auto 30px;
opacity: 0.9;
animation: fadeIn 1s ease-out 0.3s forwards;
}

.btn {
display: inline-block;
background-color: var(--secondary);
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 16px;
}

.btn:hover {
background-color: var(--accent);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
background-color: var(--secondary);
}

.btn-secondary {
background-color: transparent;
border: 2px solid white;
margin-left: 15px;
}

.btn-secondary:hover {
background-color: white;
color: var(--primary);
}

.about {
background-color: white;
}

.section-title {
text-align: center;
margin-bottom: 60px;
font-size: 36px;
color: var(--primary);
position: relative;
}

.section-title:after {
content: '';
display: block;
width: 80px;
height: 4px;
background-color: var(--secondary);
margin: 15px auto 0;
}

.about-content {
display: flex;
align-items: center;
gap: 50px;
}

.about-text {
flex: 1;
}

.about-image {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}

.about-image:hover img {
transform: scale(1.05);
}

.product {
background-color: var(--light);
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.product-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
height: 250px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.product-card:hover .product-image img {
transform: scale(1.1);
}

.product-info {
padding: 20px;
}

.product-title {
font-size: 20px;
margin-bottom: 10px;
color: var(--primary);
}

.product-description {
color: var(--text-light);
margin-bottom: 15px;
}

.product-price {
font-size: 22px;
font-weight: 700;
color: var(--secondary);
margin-bottom: 15px;
}

.pricing {
background-color: white;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.pricing-card {
background-color: var(--light);
border-radius: 10px;
padding: 40px 30px;
text-align: center;
transition: transform 0.3s;
position: relative;
overflow: hidden;
}

.pricing-card:hover {
transform: translateY(-10px);
}

.pricing-card.popular {
border: 2px solid var(--secondary);
}

.popular-badge {
position: absolute;
top: 0;
right: 30px;
background-color: var(--secondary);
color: white;
padding: 5px 15px;
font-size: 14px;
font-weight: 600;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.pricing-title {
font-size: 24px;
margin-bottom: 20px;
color: var(--primary);
}

.pricing-price {
font-size: 36px;
font-weight: 700;
margin-bottom: 20px;
color: var(--secondary);
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
}

.pricing-features li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
text-align: left;
}

.pricing-features li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

.gallery {
background-color: var(--light);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.gallery-item {
border-radius: 10px;
overflow: hidden;
position: relative;
height: 250px;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
padding: 20px;
color: white;
opacity: 0;
transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.reviews {
background-color: white;
}

.review-slider {
position: relative;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
}

.review-track {
display: flex;
transition: transform 0.5s ease;
}

.review-slide {
min-width: 100%;
padding: 0 20px;
}

.review-card {
background-color: var(--light);
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 20px;
border: 3px solid var(--accent);
}

.review-text {
font-style: italic;
margin-bottom: 20px;
color: var(--text-light);
}

.review-author {
font-weight: 700;
color: var(--primary);
}

.slider-nav {
display: flex;
justify-content: center;
margin-top: 30px;
}

.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
margin: 0 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.slider-dot.active {
background-color: var(--secondary);
}

.faq {
background-color: var(--light);
}

.accordion {
max-width: 800px;
margin: 0 auto;
}

.accordion-item {
margin-bottom: 15px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
background-color: white;
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
transition: background-color 0.3s;
}

.accordion-header:hover {
background-color: #f9f9f9;
}

.accordion-header:after {
content: '+';
font-size: 20px;
color: var(--secondary);
}

.accordion-header.active:after {
content: '-';
}

.accordion-content {
background-color: white;
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-content.active {
padding: 20px;
max-height: 500px;
}

.contact {
background-color: white;
}

.contact-container {
display: flex;
gap: 50px;
}

.contact-info {
flex: 1;
}

.contact-form {
flex: 1;
background-color: var(--light);
padding: 40px;
border-radius: 10px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}

.form-control {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
transition: border-color 0.3s;
resize: none;
}

.form-control:focus {
outline: none;
border-color: var(--primary);
}

.info-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
}

.info-icon {
font-size: 24px;
color: var(--secondary);
margin-right: 15px;
flex-shrink: 0;
}

.info-text h3 {
font-size: 18px;
margin-bottom: 5px;
color: var(--primary);
}

.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
}

.popup.active {
opacity: 1;
visibility: visible;
}

.popup-content {
background-color: white;
padding: 40px;
border-radius: 10px;
text-align: center;
max-width: 500px;
width: 90%;
position: relative;
transform: translateY(20px);
transition: transform 0.3s;
}

.popup.active .popup-content {
transform: translateY(0);
}

.popup-close {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
color: var(--text-light);
transition: color 0.3s;
}

.popup-close:hover {
color: var(--secondary);
}

.popup-title {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary);
}

.popup-text {
margin-bottom: 20px;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: var(--dark);
color: white;
padding: 20px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s;
}

.cookie-banner.active {
transform: translateY(0);
}

.cookie-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.cookie-text {
flex: 1;
padding-right: 20px;
}

.cookie-actions {
display: flex;
gap: 15px;
}

.cookie-btn {
background-color: transparent;
color: white;
border: 1px solid white;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s;
}

.cookie-btn.accept {
background-color: var(--secondary);
border-color: var(--secondary);
}

.cookie-btn:hover {
opacity: 0.8;
}

footer {
background-color: var(--dark);
color: white;
padding: 60px 0 20px;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-logo {
font-size: 24px;
font-weight: 700;
color: white;
margin-bottom: 20px;
display: inline-block;
}

.footer-logo span {
color: var(--secondary);
}

.footer-about {
max-width: 300px;
}

.footer-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: var(--accent);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--secondary);
}

.footer-contact-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}

.footer-contact-icon {
margin-right: 10px;
color: var(--secondary);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
color: #aaa;
font-size: 14px;
}

.disclaimer {
background-color: #f8f9fa;
padding: 30px 0;
font-size: 14px;
color: var(--text-light);
text-align: center;
}

.disclaimer p {
max-width: 800px;
margin: 0 auto;
}

@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@media (max-width: 992px) {
.about-content {
    flex-direction: column;
}

.contact-container {
    flex-direction: column;
}

.nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
}

.nav-links.active {
    transform: translateY(0);
}

.nav-links li {
    margin: 15px 0;
}

.burger {
    display: block;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}

.section-title {
    font-size: 30px;
}
}

@media (max-width: 768px) {
.cookie-content {
    flex-direction: column;
    text-align: center;
}

.cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
}

.hero {
    padding: 100px 0;
}

.hero h1 {
    font-size: 32px;
}

.btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.btn-secondary {
    margin-left: 0;
}
}
