@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6b5b4f;
    --secondary: #d4a574;
    --accent: #8fbc8f;
    --light: #faf8f5;
    --dark: #3d3630;
    --text: #4a4a4a;
    --white: #ffffff;
    --shadow: rgba(107, 91, 79, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 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;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 60px 25px 25px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
    color: var(--secondary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, #f0ebe3 100%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212,165,116,0.1) 50%, transparent 70%);
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge span {
    display: block;
    font-size: 11px;
    color: var(--text);
}

.hero-badge strong {
    font-size: 18px;
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 32px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text);
}

.about-section {
    background: linear-gradient(135deg, #f5f0e8 0%, var(--light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px var(--shadow);
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--accent);
    font-size: 16px;
}

.about-feature span {
    font-size: 13px;
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.testimonials .section-header span {
    color: var(--secondary);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.author-info span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.author-info small {
    font-size: 11px;
    opacity: 0.8;
}

.cta-section {
    background: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0 50px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb span {
    opacity: 0.7;
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.content-main p {
    margin-bottom: 15px;
    font-size: 14px;
}

.content-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    height: fit-content;
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.sidebar-widget ul li {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget ul li a:hover {
    color: var(--secondary);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 40px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.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;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item div span {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item div p {
    font-size: 13px;
    margin: 0;
    opacity: 1;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,165,116,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--secondary);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    opacity: 0.7;
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.privacy-links a {
    font-size: 11px;
    opacity: 0.7;
}

.privacy-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 100px;
    color: var(--secondary);
    line-height: 1;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text);
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light) 0%, #f0ebe3 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
}

.thankyou-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text);
}

.policy-content {
    padding: 50px 0;
}

.policy-content h1 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.policy-content h2 {
    font-size: 20px;
    margin: 25px 0 12px;
}

.policy-content h3 {
    font-size: 17px;
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 12px 20px;
}

.policy-content ul li {
    font-size: 13px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.last-updated {
    font-size: 12px;
    color: var(--text);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 25px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.feature-item i {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-item span {
    font-size: 13px;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
}

.process-section {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 15px;
    font-family: 'Cormorant Garamond', serif;
}

.process-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text);
}

.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.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(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 28px;
}

.team-card h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text);
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-steps,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .process-steps,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .error-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
}
