@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');

:root {
    --terracotta: #C67B5C;
    --terracotta-dark: #A85A3C;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --sage: #8FA68A;
    --sage-dark: #6B8566;
    --slate: #5A6268;
    --slate-dark: #3D4449;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', 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(--slate-dark);
    background-color: var(--cream);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terracotta);
}

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;
    color: var(--slate-dark);
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--terracotta-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--slate-dark);
    border: 1px solid var(--slate);
}

.btn-secondary:hover {
    background-color: var(--slate-dark);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(250,247,242,0.98) 0%, rgba(250,247,242,0.92) 100%);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--terracotta);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--slate-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--terracotta);
}

main {
    padding-top: 60px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--cream-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--slate-dark);
}

.hero p {
    font-size: 15px;
    color: var(--slate);
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--slate);
    max-width: 550px;
    margin: 0 auto;
}

.about-preview {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--slate);
    margin-bottom: 20px;
}

.features-section {
    background-color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--white);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--terracotta);
    font-size: 20px;
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 0;
}

.categories-section {
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.category-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-overlay span {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.products-section {
    background-color: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 220px;
    overflow: hidden;
    background-color: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 48px;
    color: var(--sage);
}

.product-info {
    padding: 18px;
}

.product-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-info p {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--terracotta);
}

.testimonials-section {
    background-color: var(--sage);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    font-weight: 600;
    font-size: 13px;
}

.cta-section {
    background-color: var(--terracotta);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto 20px;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--terracotta);
}

.cta-section .btn:hover {
    background-color: var(--cream);
}

.page-header {
    background-color: var(--cream-dark);
    padding: 80px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate);
}

.breadcrumb a:hover {
    color: var(--terracotta);
}

.breadcrumb span {
    color: var(--terracotta);
}

.content-section {
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 16px;
    margin-top: 25px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.sidebar {
    background-color: var(--cream);
    padding: 25px;
    border-radius: 4px;
    height: fit-content;
}

.sidebar h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar ul li a i {
    color: var(--terracotta);
}

.decor-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.decor-item {
    text-align: center;
    padding: 20px;
    background-color: var(--cream);
    border-radius: 4px;
}

.decor-item i {
    font-size: 36px;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.decor-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.decor-item p {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 0;
}

.accessories-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.accessory-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--cream);
    border-radius: 4px;
}

.accessory-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--terracotta);
    font-size: 20px;
}

.accessory-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.accessory-info p {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 0;
}

.team-section {
    background-color: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    background-color: var(--white);
    padding: 25px;
    border-radius: 4px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--sage);
    font-size: 30px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    text-align: center;
    padding: 20px 15px;
}

.value-card i {
    font-size: 28px;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 0;
}

.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 35px;
    border-radius: 4px;
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    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-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item div {
    font-size: 13px;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
}

.opening-hours h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--white);
}

.hours-list {
    font-size: 13px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hours-list div:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    padding: 35px;
    background-color: var(--cream);
    border-radius: 4px;
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--slate-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--terracotta);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
}

.thank-you-content {
    max-width: 500px;
    padding: 40px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
}

.thank-you-content h1 {
    margin-bottom: 15px;
}

.thank-you-content p {
    color: var(--slate);
    margin-bottom: 25px;
}

.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
}

.error-content {
    max-width: 500px;
    padding: 40px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h1 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--slate);
    margin-bottom: 25px;
}

.policy-section {
    background-color: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-content p,
.policy-content li {
    color: var(--slate);
    margin-bottom: 10px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.policy-date {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
}

footer {
    background-color: var(--slate-dark);
    color: rgba(255,255,255,0.8);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    max-width: 250px;
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links ul li a:hover {
    color: var(--terracotta);
}

.footer-contact p {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--terracotta);
    width: 14px;
}

.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: 10px;
}

.copyright {
    font-size: 12px;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.policy-links a:hover {
    color: var(--terracotta);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h4 {
    margin-bottom: 10px;
}

.privacy-popup p {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 8px 18px;
    font-size: 12px;
}

.gallery-image {
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-section {
    background-color: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image {
    border-radius: 4px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--cream-dark);
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 0;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .about-grid,
    .story-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .categories-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .decor-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accessories-showcase {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 9px 20px;
        font-size: 12px;
    }
    
    .features-grid,
    .values-grid,
    .decor-items-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .header-inner {
        padding: 10px 0;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 30px 0;
    }
}
