@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B7355;
    --primary-dark: #6B5544;
    --secondary: #C4B5A5;
    --accent: #D4A574;
    --dark: #2C2520;
    --light: #FAF8F5;
    --gray: #E8E4E0;
    --text: #4A4440;
    --text-light: #7A7570;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(44, 37, 32, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 37, 32, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 1.9rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--gray);
    color: var(--primary-dark);
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo i {
    font-size: 1.4rem;
    color: var(--primary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    margin: 2px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 60px 25px 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    border-bottom: 1px solid var(--gray);
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: var(--primary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 37, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-img {
    display: none;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 20px;
    margin: 0 auto 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.about-preview {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img-badge span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-img-badge small {
    font-size: 10px;
    color: var(--text-light);
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    font-size: 13px;
    color: var(--text-light);
}

.about-list {
    list-style: none;
    margin: 15px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
}

.about-list i {
    color: var(--primary);
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.service-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 16px;
}

.service-card-price {
    text-align: right;
}

.service-card-price span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.service-card-price small {
    font-size: 10px;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card-features {
    list-style: none;
    margin-bottom: 15px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 11px;
    color: var(--text);
}

.service-card-features i {
    color: var(--primary);
    font-size: 12px;
}

.testimonials {
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.testimonial-info h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.cta {
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    text-align: center;
}

.cta h2 {
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto 20px;
    font-size: 13px;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 12px;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-policies a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-policies a:hover {
    color: var(--accent);
}

.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--primary);
}

.about-section {
    background: var(--white);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-main-content h2 {
    margin-bottom: 15px;
}

.about-main-content p {
    font-size: 13px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 16px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.value-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.team-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.team-card span {
    display: block;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

.form-checkbox a {
    color: var(--primary);
}

.map-section {
    background: var(--light);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.service-detail {
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-detail-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-detail-content h2 {
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 13px;
    color: var(--text-light);
}

.service-process {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.process-step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.process-step-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 24px;
    margin: 0 auto 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--gray);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--primary);
    font-size: 12px;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.policy-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 15px 0 15px 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.policy-content strong {
    color: var(--text);
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    padding: 40px 15px;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto 25px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    padding: 40px 15px;
}

.thankyou-content .thankyou-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 36px;
    margin: 0 auto 20px;
}

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto 25px;
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(44, 37, 32, 0.15);
    z-index: 9999;
    transition: var(--transition);
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 12px;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 16px;
    font-size: 12px;
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    
    .section {
        padding: 70px 0;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .hero-img {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: 40%;
        max-width: 400px;
    }
    
    .hero-img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-img img {
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .about-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-main-img img {
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-img img {
        height: 350px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    
    .section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-img {
        width: 45%;
        max-width: 500px;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}
