@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: #2d4a3e;
    --secondary: #c9a962;
    --accent: #e8d5b7;
    --dark: #1a1a1a;
    --light: #faf8f5;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header.hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    margin: 2px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 12px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    margin-bottom: 15px;
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 8px;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

.about-features i {
    color: var(--secondary);
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price a {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-price a:hover {
    color: var(--primary);
}

.process-section {
    background: var(--primary);
    color: var(--white);
}

.process-section .section-header span {
    color: var(--accent);
}

.process-section .section-header h2,
.process-section .section-header p {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -12px;
    width: 25px;
    height: 2px;
    background: var(--secondary);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 12px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author-info h5 {
    font-size: 13px;
    font-family: var(--font-body);
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #a88a42 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 450px;
    margin: 0 auto 20px;
    font-size: 14px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin: 10px 0;
    max-width: 250px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.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;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.footer-copyright span {
    color: var(--secondary);
}

.footer-policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-policy-links a:hover {
    color: var(--secondary);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    gap: 15px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--secondary);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--accent);
    padding: 12px;
    border-radius: 8px;
}

.contact-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 12px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    margin: 0;
    font-weight: 400;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.map-section {
    background: var(--white);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.about-page-section {
    background: var(--white);
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
}

.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px auto 15px;
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.team-card span {
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 12px;
    padding: 12px 20px 20px;
}

.cards-showcase {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card-item {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.card-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-item-image {
    height: 180px;
    overflow: hidden;
}

.card-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-item:hover .card-item-image img {
    transform: scale(1.05);
}

.card-item-content {
    padding: 18px;
}

.card-item-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.card-item-content p {
    font-size: 12px;
    margin-bottom: 12px;
}

.card-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-item-price span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.categories-section {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--secondary);
}

.category-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.category-card h4 {
    font-size: 13px;
    margin-bottom: 5px;
}

.category-card span {
    font-size: 11px;
    color: var(--text-light);
}

.gift-features {
    background: var(--white);
}

.gift-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gift-feature {
    text-align: center;
    padding: 20px;
}

.gift-feature i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.gift-feature h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.gift-feature p {
    font-size: 12px;
}

.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    padding-top: 60px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    max-width: 400px;
    margin: 0 auto 25px;
}

.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding-top: 60px;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 15px;
}

.thank-you-content p {
    max-width: 450px;
    margin: 0 auto 25px;
}

.policy-page {
    background: var(--white);
    padding: 40px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.policy-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    margin: 15px 0 15px 20px;
}

.policy-content li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-popup h4 i {
    color: var(--secondary);
}

.privacy-popup p {
    font-size: 12px;
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 11px;
}

.intro-section {
    background: var(--light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid,
    .contact-grid,
    .about-page-grid,
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image::before {
        display: none;
    }
    
    .categories-grid,
    .gift-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-hover);
        display: none;
    }
    
    .nav-menu.active {
        right: 0;
        display: flex;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 40px 0;
    }
    
    .categories-grid,
    .gift-features-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 15px;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    h1 { font-size: 1.2rem; }
    h2 { font-size: 1.1rem; }
    
    .hero {
        padding-top: 50px;
    }
    
    .hero-text h1 {
        font-size: 1.3rem;
    }
}
