:root {
    --primary-color: #8B7355;
    --primary-dark: #6B5344;
    --primary-light: #A89078;
    --secondary-color: #C4B5A5;
    --accent-color: #D4C5B5;
    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --text-white: #FFFFFF;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F2EE;
    --bg-white: #FFFFFF;
    --border-color: #E5E0DA;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-light {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--bg-cream);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-header {
    margin-bottom: 32px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
}

.section-header.centered p {
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 16px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-list a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 6px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 90vh;
    padding: 80px 16px 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 420px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-preview {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.about-text .btn {
    margin-top: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
}

.services-showcase {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-card:hover {
    background-color: var(--bg-cream);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 20px;
    color: var(--text-white);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

.featured-work {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-text h2 {
    margin-bottom: 16px;
}

.featured-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.featured-list {
    margin-bottom: 24px;
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.featured-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.process-section {
    padding: 60px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -12px;
    width: 24px;
    height: 2px;
    background-color: var(--border-color);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.process-step h3 {
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.page-hero {
    padding: 100px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
}

.services-detail {
    padding: 60px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.detail-content h2 {
    margin-bottom: 16px;
}

.detail-content p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.detail-features {
    margin-top: 24px;
}

.detail-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.detail-feature i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.detail-feature h4 {
    margin-bottom: 4px;
}

.detail-feature p {
    font-size: 12px;
    margin-bottom: 0;
}

.detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.products-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-image {
    width: 64px;
    height: 64px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.product-image i {
    font-size: 24px;
    color: var(--primary-color);
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.expertise-section {
    padding: 60px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expertise-item {
    text-align: center;
    padding: 24px 16px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.expertise-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.expertise-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.expertise-item p {
    font-size: 12px;
    color: var(--text-light);
}

.sheer-intro {
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.intro-content h2 {
    margin-bottom: 16px;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.intro-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sheer-types {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.type-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.type-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.type-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.type-card p {
    font-size: 12px;
    color: var(--text-light);
}

.sheer-benefits {
    padding: 60px 0;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.benefits-content h2 {
    margin-bottom: 24px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.benefits-list i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefits-list h4 {
    margin-bottom: 4px;
}

.benefits-list p {
    font-size: 12px;
    color: var(--text-light);
}

.benefits-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 13px;
}

.form-group {
    margin-bottom: 16px;
}

.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: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-light);
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-card:hover {
    background-color: var(--bg-cream);
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 18px;
    color: var(--text-white);
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-content p {
    font-size: 12px;
    color: var(--text-light);
}

.map-section {
    padding: 40px 0 60px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

.contact-cta {
    padding: 40px 0 60px;
    background-color: var(--bg-light);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cta-item {
    text-align: center;
    padding: 24px;
}

.cta-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cta-item h3 {
    margin-bottom: 8px;
}

.cta-item p {
    font-size: 12px;
    color: var(--text-light);
}

.thankyou-main,
.error-main {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.thankyou-section,
.error-section {
    padding: 40px 0;
    text-align: center;
}

.thankyou-content,
.error-content {
    max-width: 480px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--text-white);
}

.thankyou-title {
    margin-bottom: 12px;
}

.thankyou-message {
    color: var(--text-light);
    margin-bottom: 24px;
}

.thankyou-details {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.thankyou-details p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.thankyou-details p:last-child {
    margin-bottom: 0;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1 {
    margin-bottom: 12px;
}

.error-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.error-suggestions {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.error-suggestions p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.error-suggestions ul {
    text-align: left;
}

.error-suggestions li {
    margin-bottom: 8px;
}

.error-suggestions a {
    font-size: 13px;
    color: var(--primary-color);
}

.error-suggestions a:hover {
    text-decoration: underline;
}

.policy-hero {
    padding: 100px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.policy-hero h1 {
    margin-bottom: 8px;
}

.policy-hero p {
    font-size: 13px;
    color: var(--text-light);
}

.policy-content {
    padding: 40px 0 60px;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.policy-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-text h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.policy-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-text li {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.policy-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.site-footer {
    background-color: var(--text-dark);
    padding: 32px 0 20px;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-info {
    text-align: center;
    margin-bottom: 24px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 12px;
}

.footer-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--text-white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 16px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        max-width: 100%;
        margin: 0 auto 24px;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .about-grid,
    .detail-grid,
    .intro-grid,
    .featured-content,
    .benefits-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid,
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .expertise-grid,
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 16px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 12px 0;
    }
    
    .services-grid,
    .products-grid,
    .expertise-grid,
    .types-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thankyou-actions,
    .error-actions {
        flex-direction: column;
    }
    
    .thankyou-actions .btn,
    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section-tag {
        font-size: 10px;
    }
    
    .about-preview,
    .services-showcase,
    .featured-work,
    .process-section,
    .cta-section,
    .services-detail,
    .products-section,
    .expertise-section,
    .sheer-intro,
    .sheer-types,
    .sheer-benefits,
    .contact-section,
    .policy-content {
        padding: 40px 0;
    }
    
    .page-hero,
    .policy-hero {
        padding: 80px 0 32px;
    }
    
    .featured-image img,
    .intro-image img,
    .detail-image img,
    .benefits-image img {
        height: 280px;
    }
    
    .intro-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 16px;
    }
}
