@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4C5B5;
    --accent-color: #5C4A3D;
    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0EA;
    --white: #FFFFFF;
    --border-color: #E8E2DA;
    --shadow: 0 2px 12px rgba(139, 115, 85, 0.08);
    --shadow-hover: 0 8px 24px rgba(139, 115, 85, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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(--accent-color);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

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-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 115, 85, 0.03));
    transform: rotate(15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    max-width: 550px;
    margin: 0 auto;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    color: var(--accent-color);
    font-size: 22px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 15px;
}

.about-preview {
    background: var(--bg-cream);
}

.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);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}

.experience-badge strong {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.experience-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.about-features i {
    color: var(--primary-color);
    font-size: 14px;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

.product-content {
    padding: 18px;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 12px;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.testimonials-section .section-header span {
    color: var(--secondary-color);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: #F5C842;
    margin-bottom: 12px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
}

.author-info strong {
    display: block;
    font-size: 13px;
}

.author-info span {
    font-size: 11px;
    opacity: 0.8;
}

.cta-section {
    background: var(--bg-cream);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    margin-bottom: 20px;
}

footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--secondary-color);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-top: 2px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-links a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--secondary-color);
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-text h2 {
    margin-bottom: 15px;
}

.content-text p {
    margin-bottom: 15px;
}

.content-list {
    margin: 15px 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.content-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 12px;
    color: var(--accent-color);
    font-size: 20px;
}

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 12px;
    margin: 0;
}

.process-section {
    background: var(--bg-cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 12px;
    margin: 0;
}

.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(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--accent-color);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    margin: 0;
}

.values-section {
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--primary-color);
}

.value-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    margin: 0;
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 35px;
    border-radius: 8px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 14px;
}

.contact-item div strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.contact-item div span {
    font-size: 12px;
    opacity: 0.8;
}

.working-hours h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-content,
.thankyou-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}

.error-inner,
.thankyou-inner {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.error-inner h1,
.thankyou-inner h1 {
    margin-bottom: 12px;
}

.error-inner p,
.thankyou-inner p {
    margin-bottom: 25px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 36px;
}

.policy-content {
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.policy-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.policy-text h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.policy-text p {
    margin-bottom: 12px;
    text-align: justify;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-text li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.policy-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

.last-updated {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.stats-section {
    background: var(--white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tips-section {
    background: var(--bg-cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.tip-content p {
    font-size: 12px;
    margin: 0;
}

@media (max-width: 991px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image::before {
        display: none;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .process-steps,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .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: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        height: 280px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 12px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .process-steps,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .error-code {
        font-size: 4rem;
    }

    .policy-links {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-inner {
        padding: 10px 0;
    }

    .service-card,
    .product-content,
    .testimonial-card {
        padding: 18px;
    }
}