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

:root {
--primary: #0f172a;
--secondary: #3b82f6;
--accent: #f59e0b;
--light: #f8fafc;
--text: #1e293b;
--text-light: #64748b;
--border: #e2e8f0;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background: #fff;
overflow-x: hidden;
}

h1, h2, h3, h4 {
font-family: 'Sora', sans-serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

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;
}

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 500;
border-radius: 6px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
text-align: center;
}

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

.btn-primary:hover {
background: #2563eb;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

.btn-outline {
background: transparent;
color: white;
border: 2px solid white;
}

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

.header {
background: white;
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

.header.scrolled {
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: 'Sora', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
}

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

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--text);
position: relative;
}

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

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

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--text);
cursor: pointer;
}

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

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.hero-shape.shape-1 {
width: 500px;
height: 500px;
background: var(--secondary);
top: -200px;
right: -100px;
}

.hero-shape.shape-2 {
width: 300px;
height: 300px;
background: var(--accent);
bottom: -100px;
left: -50px;
}

.hero-shape.shape-3 {
width: 200px;
height: 200px;
background: var(--secondary);
top: 50%;
left: 30%;
}

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

.hero-text-content {
color: white;
}

.hero-badge {
display: inline-block;
background: rgba(59, 130, 246, 0.2);
color: var(--secondary);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-text-content h1 {
font-size: 3rem;
color: white;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-text-content p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 2rem;
}

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

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

.stat-item strong {
font-size: 2rem;
font-weight: 700;
color: var(--accent);
}

.stat-item span {
font-size: 0.9rem;
opacity: 0.8;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.hero-image-content {
position: relative;
}

.hero-card {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-card img {
width: 100%;
border-radius: 15px;
}

.hero-floating-badge {
position: absolute;
background: white;
padding: 12px 20px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 10px;
font-size: 0.9rem;
font-weight: 500;
}

.hero-floating-badge i {
color: var(--secondary);
font-size: 1.2rem;
}

.hero-floating-badge.badge-1 {
top: 20px;
right: -20px;
}

.hero-floating-badge.badge-2 {
bottom: 20px;
left: -20px;
}

.features {
padding: 60px 0;
background: var(--light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.feature-box {
background: white;
padding: 30px;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border);
}

.feature-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--secondary);
}

.feature-box i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 15px;
}

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

.feature-box p {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}

.showcase {
padding: 80px 0;
}

.showcase-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.section-label {
display: inline-block;
color: var(--secondary);
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.showcase-content h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

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

.showcase-features {
display: flex;
flex-direction: column;
gap: 12px;
margin: 25px 0;
}

.showcase-feature {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.95rem;
}

.showcase-feature i {
color: var(--secondary);
font-size: 1rem;
}

.showcase-image img {
border-radius: 15px;
width: 100%;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.materials {
padding: 80px 0;
background: var(--light);
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header h2 {
font-size: 2.2rem;
margin-bottom: 10px;
}

.materials-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.material-card {
background: white;
padding: 30px;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.material-card:hover {
border-color: var(--secondary);
transform: translateY(-5px);
}

.material-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), #2563eb);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 1.8rem;
}

.material-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
}

.material-card p {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}

.process-modern {
padding: 80px 0;
}

.process-timeline {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.timeline-step {
display: flex;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.step-icon {
width: 60px;
height: 60px;
background: var(--secondary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
flex-shrink: 0;
z-index: 1;
}

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

.step-content p {
font-size: 0.95rem;
color: var(--text-light);
margin: 0;
}

.step-line {
position: absolute;
left: 30px;
top: 60px;
width: 2px;
height: calc(100% + 40px);
background: var(--border);
}

.timeline-step:last-child .step-line {
display: none;
}

.quality-promise {
padding: 80px 0;
background: var(--light);
}

.quality-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.quality-image img {
border-radius: 15px;
width: 100%;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.quality-content h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

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

.quality-points {
display: flex;
flex-direction: column;
gap: 25px;
}

.quality-point {
display: flex;
gap: 20px;
}

.point-number {
width: 50px;
height: 50px;
background: var(--secondary);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 700;
flex-shrink: 0;
}

.point-text h4 {
font-size: 1.1rem;
margin-bottom: 5px;
}

.point-text p {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}

.testimonials-modern {
padding: 80px 0;
}

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

.testimonial-item {
background: var(--light);
padding: 30px;
border-radius: 10px;
}

.testimonial-stars {
color: var(--accent);
margin-bottom: 15px;
font-size: 0.9rem;
}

.testimonial-item p {
font-size: 0.95rem;
color: var(--text);
margin-bottom: 20px;
font-style: italic;
line-height: 1.7;
}

.testimonial-author strong {
display: block;
font-size: 0.95rem;
margin-bottom: 3px;
}

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

.action-banner {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), #1e293b);
color: white;
text-align: center;
}

.banner-content h2 {
font-size: 2.5rem;
color: white;
margin-bottom: 15px;
}

.banner-content p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 30px;
}

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

.footer {
background: var(--primary);
color: white;
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 1rem;
margin-bottom: 15px;
color: white;
}

.footer-col p, .footer-col a {
font-size: 0.85rem;
color: rgba(255,255,255,0.8);
margin-bottom: 8px;
display: block;
}

.footer-col a:hover {
color: white;
}

.footer-col i {
margin-right: 8px;
color: var(--secondary);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
margin: 0;
}

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

.footer-links a {
font-size: 0.85rem;
color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
color: white;
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: white;
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.cookie-popup.show {
transform: translateY(0);
}

.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: 0.9rem;
flex: 1;
min-width: 250px;
}

.cookie-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.cookie-link {
color: var(--accent);
font-size: 0.9rem;
}

.cookie-accept {
background: var(--secondary);
color: white;
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
}

.cookie-accept:hover {
background: #2563eb;
}

.page-hero-modern {
position: relative;
padding: 80px 0;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
text-align: center;
}

.page-hero-content {
position: relative;
z-index: 1;
color: white;
}

.page-hero-content h1 {
font-size: 2.5rem;
color: white;
margin-bottom: 15px;
}

.page-hero-content p {
font-size: 1.1rem;
opacity: 0.9;
margin: 0;
}

@media (max-width: 1024px) {
.mega-hero-grid, .showcase-grid, .quality-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text-content h1 {
font-size: 2.5rem;
}

.materials-grid, .features-grid {
grid-template-columns: repeat(2, 1fr);
}

.testimonials-slider {
grid-template-columns: 1fr;
}

.quality-grid .quality-image {
order: -1;
}
}

@media (max-width: 768px) {
h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }

.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
gap: 15px;
}

.nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

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

.hero-text-content h1 {
font-size: 2rem;
}

.hero-stats {
gap: 20px;
}

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

.hero-floating-badge {
position: static;
margin: 10px 0;
}

.materials-grid, .features-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}

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

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

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

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

.hero-text-content h1 {
font-size: 1.7rem;
}

.page-hero-content h1 {
font-size: 1.8rem;
}

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

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

@media (max-width: 320px) {
body {
font-size: 14px;
}

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }

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

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

.products {
padding: 80px 0;
}

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

.product-card {
background: white;
border: 2px solid var(--border);
border-radius: 15px;
padding: 35px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

.product-card.featured {
border-color: var(--secondary);
transform: scale(1.05);
box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

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

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

.product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
}

.product-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--secondary), #2563eb);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: white;
font-size: 2rem;
}

.product-card h3 {
font-size: 1.3rem;
margin-bottom: 20px;
}

.product-features {
text-align: left;
margin: 25px 0;
}

.product-features p {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.product-features i {
color: var(--secondary);
font-size: 0.8rem;
}

.product-price {
margin: 30px 0;
}

.price {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary);
}

.price-note {
display: block;
font-size: 0.85rem;
color: var(--text-light);
margin-top: 5px;
}

.specifications {
padding: 80px 0;
background: var(--light);
}

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

.spec-item {
background: white;
padding: 30px;
border-radius: 10px;
}

.spec-item h3 {
font-size: 1.1rem;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.spec-item h3 i {
color: var(--secondary);
}

.spec-item p {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}

.design-services {
padding: 80px 0;
}

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

.service-item {
background: var(--light);
padding: 35px;
border-radius: 10px;
transition: all 0.3s ease;
}

.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), #2563eb);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: white;
font-size: 1.6rem;
}

.service-item h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.service-item p {
font-size: 0.95rem;
color: var(--text-light);
margin: 0;
}

.design-process {
padding: 80px 0;
background: var(--light);
}

.contact-main {
padding: 80px 0;
}

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

.contact-info-section h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.contact-info-section > p {
color: var(--text-light);
margin-bottom: 35px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-detail-item {
display: flex;
gap: 20px;
}

.contact-icon {
width: 55px;
height: 55px;
background: linear-gradient(135deg, var(--secondary), #2563eb);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.3rem;
flex-shrink: 0;
}

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

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

.contact-form-section {
background: var(--light);
padding: 45px;
border-radius: 15px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 0.95rem;
font-family: inherit;
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(59, 130, 246, 0.1);
}

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

.checkbox-label {
display: flex;
gap: 10px;
font-size: 0.85rem;
color: var(--text-light);
cursor: pointer;
}

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

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

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

.map-section h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2rem;
}

.map-container {
width: 100%;
height: 450px;
border-radius: 15px;
overflow: hidden;
}

.map-container iframe {
width: 100%;
height: 100%;
}

.thankyou-section, .error-section {
padding: 100px 0;
min-height: calc(100vh - 250px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 650px;
margin: 0 auto;
}

.thankyou-icon {
width: 110px;
height: 110px;
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 35px;
color: white;
font-size: 3.5rem;
}

.thankyou-content h1 {
font-size: 2.2rem;
margin-bottom: 20px;
color: var(--text);
}

.thankyou-content p {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 15px;
}

.thankyou-info {
background: var(--light);
padding: 25px;
border-radius: 10px;
margin: 30px 0;
}

.thankyou-info p {
margin: 0;
font-size: 0.95rem;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 35px;
flex-wrap: wrap;
}

.error-number {
font-size: 9rem;
font-weight: 700;
color: var(--secondary);
opacity: 0.15;
line-height: 1;
margin-bottom: 25px;
}

.error-content h1 {
font-size: 2rem;
margin-bottom: 15px;
}

.error-content p {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 35px;
}

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

.policy-page {
padding: 80px 0;
background: var(--light);
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 60px;
border-radius: 15px;
}

.policy-content h1 {
font-size: 2.5rem;
margin-bottom: 10px;
color: var(--text);
}

.policy-date {
font-size: 0.9rem;
color: var(--text-light);
margin-bottom: 40px;
}

.policy-section {
margin-bottom: 40px;
}

.policy-section h2 {
font-size: 1.6rem;
margin-bottom: 20px;
color: var(--text);
border-bottom: 3px solid var(--secondary);
padding-bottom: 10px;
}

.policy-section h3 {
font-size: 1.3rem;
margin: 25px 0 15px;
color: var(--text);
}

.policy-section p {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 15px;
}

.policy-section ul {
margin: 20px 0 20px 30px;
}

.policy-section li {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.8;
margin-bottom: 12px;
}

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

@media (max-width: 1024px) {
.products-grid {
grid-template-columns: 1fr;
}

.product-card.featured {
transform: scale(1);
}

.specs-grid {
grid-template-columns: repeat(2, 1fr);
}

.services-wrapper {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-form-section {
padding: 35px 25px;
}

.specs-grid {
grid-template-columns: 1fr;
}

.thankyou-icon {
width: 90px;
height: 90px;
font-size: 3rem;
}

.thankyou-content h1 {
font-size: 1.8rem;
}

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

.policy-content {
padding: 40px 30px;
}

.policy-content h1 {
font-size: 2rem;
}

.map-container {
height: 350px;
}
}

@media (max-width: 480px) {
.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary,
.error-actions .btn-primary,
.error-actions .btn-secondary {
width: 100%;
}

.contact-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.policy-content {
padding: 30px 20px;
}

.map-container {
height: 300px;
}
}

@media (max-width: 320px) {
.thankyou-icon {
width: 75px;
height: 75px;
font-size: 2.5rem;
}

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

.policy-content {
padding: 25px 15px;
}

.contact-form-section {
padding: 25px 15px;
}
}
