* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #2c5f4d;
--secondary-color: #d4a574;
--accent-color: #8b7355;
--text-dark: #1a1a1a;
--text-light: #5a5a5a;
--bg-light: #f9f7f4;
--white: #ffffff;
--border-color: #e8e6e3;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
padding: 15px 0;
position: relative;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--white);
letter-spacing: 1px;
}

.nav {
display: flex;
gap: 25px;
}

.nav.mobile-active {
display: flex !important;
}

.nav-link {
color: var(--white);
font-size: 14px;
font-weight: 400;
padding: 8px 0;
position: relative;
}

.nav-link:hover,
.nav-link.active {
color: var(--secondary-color);
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
position: relative;
z-index: 10001;
pointer-events: auto;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--white);
margin: 3px 0;
transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

.mega-hero {
position: relative;
padding: 80px 0;
background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
overflow: hidden;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.shape {
position: absolute;
background: var(--primary-color);
opacity: 0.03;
border-radius: 50%;
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
right: 10%;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -50px;
left: 5%;
background: var(--secondary-color);
}

.shape-3 {
width: 200px;
height: 200px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: var(--accent-color);
}

.mega-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-label {
display: inline-block;
font-size: 13px;
font-weight: 500;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 15px;
}

.hero-text-block h1 {
font-size: 3.2rem;
line-height: 1.2;
margin-bottom: 20px;
color: var(--text-dark);
}

.hero-text-block p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 30px;
}

.hero-stats {
display: flex;
gap: 30px;
margin-bottom: 30px;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 1.8rem;
font-weight: 600;
color: var(--primary-color);
line-height: 1;
margin-bottom: 5px;
}

.stat-item span {
font-size: 13px;
color: var(--text-light);
}

.hero-img-wrapper {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-img-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
opacity: 0.1;
z-index: 1;
}

.hero-img-wrapper img {
width: 100%;
height: auto;
display: block;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary {
background: var(--secondary-color);
color: var(--text-dark);
}

.btn-primary:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
background: transparent;
color: var(--text-dark);
border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
background: var(--primary-color);
color: var(--white);
}

section {
padding: 60px 0;
}

.features {
background: var(--bg-light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.feature-card {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 30px 20px;
background: var(--white);
border-radius: 5px;
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon-box {
flex-shrink: 0;
width: 60px;
height: 60px;
background: #d4a574;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.feature-icon-box i {
font-size: 1.8rem;
color: #8b7355;
}

.feature-content h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: #2c5f4d;
}

.feature-content p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-text h2 {
margin-bottom: 20px;
color: var(--primary-color);
}

.about-text p {
margin-bottom: 15px;
color: var(--text-light);
}

.about-image img {
border-radius: 5px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services {
background: var(--bg-light);
}

.services h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.service-card {
background: var(--white);
padding: 30px;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease;
}

.service-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
background: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.service-icon i {
font-size: 2rem;
color: var(--white);
}

.service-card h3 {
margin-bottom: 15px;
}

.service-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 20px;
}

.link-arrow {
color: var(--primary-color);
font-weight: 500;
font-size: 14px;
}

.link-arrow:hover {
color: var(--accent-color);
}

.link-arrow i {
margin-left: 5px;
transition: margin-left 0.3s ease;
}

.link-arrow:hover i {
margin-left: 10px;
}

.process h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.step {
text-align: center;
padding: 20px;
}

.step-number {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background: var(--secondary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
color: var(--text-dark);
}

.step h3 {
margin-bottom: 10px;
font-size: 1.1rem;
}

.step p {
font-size: 14px;
color: var(--text-light);
}

.section-label {
display: inline-block;
font-size: 12px;
font-weight: 600;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
}

.section-label.center {
display: block;
text-align: center;
}

.section-title {
text-align: center;
margin-bottom: 40px;
color: var(--text-dark);
}

.story {
background: var(--white);
}

.story-content {
max-width: 1000px;
margin: 0 auto;
}

.story-text {
margin-bottom: 40px;
}

.story-text h2 {
margin-bottom: 25px;
color: var(--primary-color);
}

.story-text p {
margin-bottom: 15px;
color: var(--text-light);
line-height: 1.8;
}

.story-numbers {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.number-card {
text-align: center;
padding: 30px 20px;
background: var(--bg-light);
border-radius: 5px;
}

.number-card i {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.number-card h3 {
font-size: 2rem;
color: var(--text-dark);
margin-bottom: 5px;
}

.number-card p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.testimonials {
background: var(--bg-light);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 5px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon {
margin-bottom: 15px;
}

.quote-icon i {
font-size: 1.5rem;
color: var(--secondary-color);
}

.testimonial-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
}

.testimonial-author strong {
display: block;
color: var(--text-dark);
font-size: 15px;
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 13px;
color: var(--text-light);
}

.gallery-preview {
background: var(--white);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.gallery-item {
position: relative;
border-radius: 5px;
overflow: hidden;
height: 300px;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 25px;
color: var(--white);
}

.gallery-overlay h3 {
color: var(--white);
margin-bottom: 5px;
font-size: 1.3rem;
}

.gallery-overlay p {
font-size: 13px;
margin: 0;
}

.final-cta {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
text-align: center;
}

.final-cta-content h2 {
color: var(--white);
margin-bottom: 15px;
font-size: 2.2rem;
}

.final-cta-content p {
font-size: 1.05rem;
margin-bottom: 30px;
color: rgba(255,255,255,0.9);
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
transition: all 0.3s ease;
}

.btn-outline:hover {
background: var(--white);
color: var(--primary-color);
}

.footer {
background: var(--text-dark);
color: var(--white);
padding: 25px 0;
font-size: 13px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: var(--white);
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
color: var(--secondary-color);
}

.page-hero-alt {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
padding: 50px 0 40px;
}

.breadcrumb {
font-size: 13px;
margin-bottom: 15px;
}

.breadcrumb a {
color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
color: var(--white);
}

.breadcrumb span {
margin: 0 8px;
color: rgba(255,255,255,0.5);
}

.page-hero-alt h1 {
color: var(--white);
font-size: 2.8rem;
margin-bottom: 10px;
}

.page-hero-alt p {
font-size: 1.05rem;
color: rgba(255,255,255,0.9);
}

.products h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.product-card {
position: relative;
background: var(--white);
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-badge {
position: absolute;
top: 15px;
left: 15px;
background: var(--secondary-color);
color: var(--text-dark);
padding: 6px 12px;
font-size: 12px;
font-weight: 600;
border-radius: 3px;
z-index: 2;
}

.product-image {
height: 300px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-info {
padding: 25px;
}

.product-info h3 {
margin-bottom: 10px;
}

.product-info p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 15px;
}

.product-price {
font-size: 1.5rem;
font-weight: 600;
color: var(--accent-color);
margin-bottom: 15px;
}

.product-price span {
font-size: 14px;
font-weight: 400;
color: var(--text-light);
}

.features-alt {
background: var(--bg-light);
}

.features-alt h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

.features-list {
max-width: 900px;
margin: 0 auto;
}

.feature-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
padding: 20px;
background: var(--white);
border-radius: 5px;
}

.feature-item i {
font-size: 1.8rem;
color: var(--accent-color);
flex-shrink: 0;
}

.feature-text h3 {
margin-bottom: 8px;
font-size: 1.1rem;
}

.feature-text p {
font-size: 14px;
color: var(--text-light);
}

.info-section {
background: var(--bg-light);
}

.info-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.info-content h2 {
margin-bottom: 20px;
color: var(--primary-color);
}

.info-content p {
margin-bottom: 15px;
color: var(--text-light);
}

.arrangements-showcase {
padding: 80px 0;
background: var(--bg-light);
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.showcase-text {
padding-right: 20px;
}

.showcase-text h2 {
margin-bottom: 25px;
color: var(--primary-color);
font-size: 2.5rem;
}

.showcase-text p {
margin-bottom: 20px;
color: var(--text-light);
line-height: 1.8;
}

.showcase-text .btn-primary {
margin-top: 30px;
}

.showcase-features {
margin-top: 30px;
margin-bottom: 20px;
}

.showcase-feature {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}

.showcase-feature i {
font-size: 1.3rem;
color: var(--accent-color);
flex-shrink: 0;
}

.showcase-feature span {
font-size: 14px;
color: var(--text-light);
}

.showcase-image {
position: relative;
padding: 20px;
}

.image-frame {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.image-frame::before {
content: '';
position: absolute;
top: -15px;
left: -15px;
right: 15px;
bottom: 15px;
border: 3px solid var(--secondary-color);
border-radius: 8px;
z-index: -1;
}

.image-frame::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(44,95,77,0.1) 0%, transparent 50%);
pointer-events: none;
}

.image-frame img {
width: 100%;
height: auto;
display: block;
filter: brightness(1.05) contrast(1.05);
}

.arrangements-types {
background: var(--bg-light);
}

.arrangements-types h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary-color);
}

.types-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.type-card {
background: var(--white);
padding: 30px;
border-radius: 5px;
text-align: center;
}

.type-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
background: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.type-icon i {
font-size: 2rem;
color: var(--white);
}

.type-card h3 {
margin-bottom: 15px;
}

.type-card p {
font-size: 14px;
color: var(--text-light);
}

.contact-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
text-align: center;
padding: 50px 0;
}

.contact-hero h1 {
color: var(--white);
font-size: 2.5rem;
margin-bottom: 10px;
}

.contact-section {
padding: 60px 0;
background: var(--bg-light);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.contact-info-box,
.contact-form-box {
background: var(--white);
padding: 35px;
border-radius: 5px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-box h2,
.contact-form-box h2 {
margin-bottom: 20px;
color: var(--primary-color);
}

.contact-info-box p {
color: var(--text-light);
margin-bottom: 25px;
font-size: 14px;
}

.contact-details {
margin-top: 30px;
}

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
}

.contact-icon {
width: 45px;
height: 45px;
background: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: var(--white);
font-size: 1.1rem;
}

.contact-text h3 {
font-size: 1rem;
margin-bottom: 5px;
}

.contact-text p {
font-size: 14px;
color: var(--text-light);
margin: 0;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 8px;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--accent-color);
text-decoration: underline;
}

.map-section {
padding: 60px 0;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
color: var(--primary-color);
}

.map-container {
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: var(--bg-light);
}

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-icon {
margin-bottom: 25px;
}

.thankyou-icon i {
font-size: 5rem;
color: var(--accent-color);
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 15px;
color: var(--primary-color);
}

.thankyou-content p,
.error-content p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 8rem;
font-weight: 600;
color: var(--primary-color);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 60px 0;
background: var(--bg-light);
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: var(--white);
padding: 40px;
border-radius: 5px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policy-content h1 {
color: var(--primary-color);
margin-bottom: 10px;
}

.policy-date {
font-size: 13px;
color: var(--text-light);
margin-bottom: 30px;
}

.policy-content h2 {
color: var(--primary-color);
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content p {
margin-bottom: 15px;
color: var(--text-light);
line-height: 1.8;
}

.policy-content strong {
color: var(--text-dark);
font-weight: 600;
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--white);
padding: 20px;
z-index: 9999;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
display: none;
}

.cookie-popup.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.cookie-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.cookie-buttons {
display: flex;
gap: 10px;
}

.btn-accept,
.btn-decline {
padding: 10px 25px;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--secondary-color);
color: var(--text-dark);
}

.btn-accept:hover {
background: var(--accent-color);
color: var(--white);
}

.btn-decline {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

.btn-decline:hover {
background: var(--white);
color: var(--text-dark);
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }

.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--primary-color);
flex-direction: column;
padding: 80px 20px 20px;
gap: 15px;
display: none;
z-index: 10000;
align-items: center;
justify-content: flex-start;
}

.nav.mobile-active {
display: flex !important;
}

.mega-hero {
padding: 50px 0;
}

.mega-hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text-block h1 {
font-size: 2.2rem;
}

.hero-text-block p {
font-size: 1rem;
}

.hero-stats {
gap: 20px;
}

.stat-item strong {
font-size: 1.5rem;
}

.about-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.showcase-content {
grid-template-columns: 1fr;
gap: 40px;
}

.showcase-image {
order: -1;
padding: 0;
}

.image-frame::before {
top: -10px;
left: -10px;
right: 10px;
bottom: 10px;
border-width: 2px;
}

.showcase-text {
padding-right: 0;
}

.showcase-text h2 {
font-size: 2rem;
}

.features-grid,
.services-grid,
.process-steps,
.products-grid,
.types-grid,
.story-numbers,
.testimonials-grid,
.gallery-grid {
grid-template-columns: 1fr;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

section {
padding: 40px 0;
}

.page-hero-alt {
padding: 35px 0 30px;
}

.page-hero-alt h1 {
font-size: 2rem;
}

.contact-info-box,
.contact-form-box {
padding: 25px;
}

.policy-content {
padding: 25px;
}

.error-number {
font-size: 5rem;
}

.thankyou-icon i {
font-size: 4rem;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
width: 100%;
justify-content: center;
}

.final-cta-content h2 {
font-size: 1.8rem;
}

.cta-buttons {
flex-direction: column;
width: 100%;
}

.cta-buttons a {
width: 100%;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }

.mega-hero {
padding: 40px 0;
}

.hero-text-block h1 {
font-size: 1.8rem;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 20px;
font-size: 13px;
}

.feature-card,
.service-card,
.type-card {
padding: 20px 15px;
}

.product-info {
padding: 20px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
}

.story-numbers {
gap: 20px;
}

.number-card {
padding: 20px 15px;
}

.testimonial-card {
padding: 20px;
}

.gallery-item {
height: 250px;
}
}

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.3rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1.1rem; }

.logo a {
font-size: 1.2rem;
}

.hero-text-block h1 {
font-size: 1.5rem;
}

.hero-text-block p {
font-size: 0.9rem;
}

.stat-item strong {
font-size: 1.3rem;
}

.stat-item span {
font-size: 12px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 8px 15px;
font-size: 12px;
}

.section-label {
font-size: 11px;
}

.feature-card i,
.service-icon i,
.type-icon i {
font-size: 1.5rem;
}

.number-card h3 {
font-size: 1.5rem;
}

.gallery-item {
height: 200px;
}

.final-cta-content h2 {
font-size: 1.5rem;
}

.page-hero-alt h1 {
font-size: 1.6rem;
}

}
