@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F5C;
    --primary-dark: #6B5344;
    --secondary: #D4C4B5;
    --accent: #C9A87C;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --cream: #FAF7F4;
    --light-bg: #F5F0EB;
    --shadow: 0 4px 20px rgba(139, 111, 92, 0.15);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    margin: 0 15px;
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
}

.header.scrolled .header-inner {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header.hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    margin: 3px 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.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(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: var(--accent);
    margin-right: 8px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 13px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.about-stats h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 3px;
}

.about-stats span {
    font-size: 12px;
    opacity: 0.9;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.feature-item i {
    color: var(--accent);
    font-size: 14px;
}

.process {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.process .section-header span,
.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: rgba(255,255,255,0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.step-card h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-card p {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.5;
}

.testimonials {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--secondary);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 16px;
}

.author-info h5 {
    font-size: 13px;
    font-weight: 600;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: var(--cream);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 48px;
    color: var(--white);
    opacity: 0.8;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--accent);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-main h3 {
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.content-main p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-main ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.content-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 11px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.sidebar-links a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--secondary);
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-section {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 13px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h5 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item-text p {
    opacity: 0.85;
    font-size: 12px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--secondary);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
}

.map-section {
    height: 350px;
    filter: grayscale(20%);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: 16px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-avatar i {
    font-size: 32px;
    color: var(--white);
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.values-section {
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.value-icon i {
    font-size: 20px;
    color: var(--white);
}

.value-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 500px;
    padding: 40px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.policy-content {
    padding: 50px 0;
}

.policy-content h1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.policy-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content ul li {
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
    position: relative;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.footer {
    background: var(--text);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    opacity: 0.7;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    opacity: 0.7;
}

.policy-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 12px;
}

.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-block {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--cream);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-block:hover {
    box-shadow: var(--shadow);
}

.feature-block-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-block-icon i {
    font-size: 20px;
    color: var(--white);
}

.feature-block-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-block-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.pricing-section {
    background: var(--cream);
}

.pricing-highlight {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-highlight h3 {
    margin-bottom: 10px;
}

.pricing-highlight .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-highlight .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-bg);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 12px;
}

.intro-section {
    background: var(--light-bg);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--text-light);
    font-size: 14px;
}

.benefits-section {
    background: var(--white);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
}

.benefit-item i {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-item div h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.benefit-item div p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.faq-section {
    background: var(--cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 500;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.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 18px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body { font-size: 13px; }
    
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    section { padding: 45px 0; }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-text h1 { font-size: 1.8rem; }
    
    .services-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid,
    .features-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .error-code { font-size: 4.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    
    section { padding: 35px 0; }
    
    .header-inner {
        margin: 0 10px;
        padding: 10px 15px;
    }
    
    .logo { font-size: 1.1rem; }
    
    .hero { padding: 90px 0 50px; }
    .hero-text h1 { font-size: 1.5rem; }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .process-steps,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge { display: none; }
    .about-stats { position: static; margin-top: 15px; }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .error-code { font-size: 3.5rem; }
    
    .map-section { height: 250px; }
}

@media (max-width: 320px) {
    body { font-size: 12px; }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    
    .container { padding: 0 10px; }
    
    .header-inner {
        margin: 0 5px;
        padding: 8px 12px;
    }
    
    .logo { font-size: 1rem; }
    
    .nav-menu { width: 100%; }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .service-card,
    .testimonial-card,
    .product-info {
        padding: 18px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 18px;
    }
}
