@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4D6B;
    --secondary-color: #D4A574;
    --accent-color: #E8C4A0;
    --dark-color: #2C2C2C;
    --light-color: #FDF8F3;
    --text-color: #3A3A3A;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(139, 77, 107, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 12px auto 0;
    border-radius: 2px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 70px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile a:hover {
    color: var(--primary-color);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.1), rgba(212, 165, 116, 0.1));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.3), rgba(212, 165, 116, 0.2));
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hero-badge i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-badge span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-color);
}

.about-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.05), rgba(212, 165, 116, 0.05));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-features {
    margin: 20px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

.products {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.process {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-title::after {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
}

.process-step h3 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    opacity: 0.9;
}

.testimonials {
    padding: 60px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.7;
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 12px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    color: var(--text-color);
}

.cta {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-section p,
.footer-section a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policy-links a:hover {
    color: var(--secondary-color);
}

.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.1), rgba(212, 165, 116, 0.1));
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--primary-color);
}

.page-content {
    padding: 50px 0;
}

.page-section {
    margin-bottom: 40px;
}

.page-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.page-section p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 12px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 35px;
    border-radius: 20px;
}

.contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid rgba(139, 77, 107, 0.2);
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 77, 107, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.05), rgba(212, 165, 116, 0.05));
}

.error-content h1 {
    font-size: 100px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.error-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.05), rgba(212, 165, 116, 0.05));
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.policy-content {
    padding: 50px 0;
}

.policy-content h1 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.policy-content h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    margin-bottom: 12px;
    text-align: justify;
}

.policy-content ul {
    margin: 12px 0 12px 20px;
}

.policy-content li {
    font-size: 13px;
    margin-bottom: 6px;
    list-style: disc;
}

.last-updated {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 25px;
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-color);
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 11px;
}

.about-hero {
    padding: 60px 0;
    background: var(--white);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-hero-text p {
    font-size: 14px;
    margin-bottom: 12px;
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.05), rgba(212, 165, 116, 0.05));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-color);
}

.team-section {
    padding: 60px 0;
    background: var(--white);
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.team-intro p {
    font-size: 14px;
    color: var(--text-color);
}

.subpage-features {
    padding: 60px 0;
    background: var(--white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-color);
}

.pricing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 77, 107, 0.05), rgba(212, 165, 116, 0.05));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price span {
    font-size: 14px;
    font-weight: 400;
}

.pricing-features {
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 12px;
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 12px;
    font-size: 13px;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .error-content h1 {
        font-size: 70px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .service-card,
    .product-card,
    .testimonial-card {
        padding: 20px 15px;
    }
}
