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

:root {
--primary: #1a2332;
--secondary: #c17a5c;
--accent: #e8b86d;
--tertiary: #7a9ca5;
--light: #faf8f5;
--dark: #0f1419;
--text: #2d3748;
--border: #e2dfd9;
}

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

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

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.4rem;
}

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 15px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.privacy-content p {
flex: 1;
font-size: 13px;
margin: 0;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--accent);
font-size: 13px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--accent);
color: var(--dark);
border: none;
padding: 8px 20px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
border-radius: 3px;
transition: all 0.3s ease;
}

.privacy-actions button:hover {
background: #c9a332;
}

.header {
background: rgba(255, 255, 255, 0.98);
border-bottom: 1px solid var(--border);
padding: 15px 0;
position: relative;
z-index: 1000;
}

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

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

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav a {
font-size: 14px;
font-weight: 400;
color: var(--text);
position: relative;
padding: 5px 0;
}

.nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: var(--accent);
transition: width 0.3s ease;
}

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

.hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary) 0%, #2a3d52 100%);
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../ambiance_assets/interior-1.jpg') center/cover;
opacity: 0.15;
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: rgba(193, 122, 92, 0.1);
border-radius: 50%;
animation: float 20s ease-in-out infinite;
z-index: 0;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(-30px, 50px) rotate(120deg); }
66% { transform: translate(30px, -30px) rotate(240deg); }
}

@keyframes floatAlt {
0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
50% { transform: translate(40px, 40px) rotate(180deg) scale(1.1); }
}

@keyframes pulse {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.05); }
}

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

.shape-1 {
animation: float 15s ease-in-out infinite;
}

.shape-2 {
animation: floatAlt 18s ease-in-out infinite;
}

.shape-3 {
animation: pulse 12s ease-in-out infinite;
}

.shape-4 {
animation: float 20s ease-in-out infinite reverse;
}

.hero .container {
position: relative;
z-index: 1;
}

.hero-content {
max-width: 800px;
text-align: left;
color: #fff;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 25px;
color: #fff;
line-height: 1.2;
font-weight: 600;
}

.hero-content p {
font-size: 1.2rem;
margin-bottom: 35px;
color: rgba(255,255,255,0.9);
line-height: 1.8;
}

.hero-stats {
display: flex;
gap: 40px;
margin-top: 50px;
flex-wrap: wrap;
}

.stat-item {
text-align: left;
}

.stat-number {
font-size: 2.5rem;
font-weight: 600;
color: var(--accent);
font-family: 'Cormorant Garamond', serif;
}

.stat-label {
font-size: 0.9rem;
color: rgba(255,255,255,0.8);
margin-top: 5px;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #1a2a3a;
transform: translateY(-2px);
}

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

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

.features {
padding: 60px 0;
background: #fff;
}

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

.feature-card {
text-align: center;
padding: 30px 20px;
}

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

.feature-card h3 {
margin-bottom: 10px;
color: var(--primary);
}

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

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

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

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

.showcase-text p {
margin-bottom: 15px;
font-size: 14px;
}

.showcase-text .btn-secondary {
margin-top: 15px;
}

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

.collections-preview {
padding: 60px 0;
background: #fff;
}

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

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

.collection-item {
text-align: center;
padding: 25px;
border: 1px solid var(--border);
border-radius: 5px;
transition: all 0.3s ease;
}

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

.collection-icon {
width: 60px;
height: 60px;
margin: 0 auto 15px;
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
border-radius: 50%;
}

.collection-icon i {
font-size: 1.8rem;
color: var(--secondary);
display: none;
}

.collection-item h3 {
margin-bottom: 10px;
color: var(--primary);
}

.collection-item p {
font-size: 13px;
color: var(--text);
}

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

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

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

.testimonial-card {
background: #fff;
padding: 25px;
border-radius: 5px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
font-size: 14px;
font-style: italic;
margin-bottom: 15px;
line-height: 1.7;
}

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

.testimonial-author span {
font-size: 12px;
color: #666;
}

.cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--secondary) 0%, #a66a50 100%);
color: #fff;
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
}

.cta-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
}

.cta-content h2 {
margin-bottom: 20px;
color: #fff;
font-size: 2.5rem;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 35px;
line-height: 1.7;
}

.cta .btn-primary {
background: #fff;
color: var(--secondary);
padding: 15px 40px;
font-size: 15px;
}

.cta .btn-primary:hover {
background: var(--accent);
color: var(--dark);
}

.page-hero {
background: linear-gradient(135deg, var(--light) 0%, #e8e4df 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
margin-bottom: 15px;
color: var(--primary);
}

.page-hero p {
font-size: 15px;
color: var(--text);
}

.products {
padding: 60px 0;
background: #fff;
}

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

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

.product-card {
border: 1px solid var(--border);
border-radius: 5px;
overflow: hidden;
transition: all 0.3s ease;
}

.product-card:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-image {
overflow: hidden;
}

.product-image img {
width: 100%;
transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
transform: scale(1.05);
}

.product-info {
padding: 25px;
}

.product-info h3 {
margin-bottom: 10px;
color: var(--primary);
}

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

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

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

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

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

.category-card {
background: #fff;
padding: 25px;
text-align: center;
border-radius: 5px;
transition: all 0.3s ease;
}

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

.category-card i {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 12px;
display: none;
}

.category-card h3 {
margin-bottom: 8px;
color: var(--primary);
font-size: 1.2rem;
}

.category-card p {
font-size: 13px;
margin-bottom: 12px;
color: var(--text);
}

.category-card a {
font-size: 13px;
color: var(--accent);
font-weight: 500;
}

.category-card a:hover {
text-decoration: underline;
}

.collection-info {
padding: 60px 0;
background: #fff;
}

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

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

.info-content p {
font-size: 14px;
margin-bottom: 15px;
}

.info-content .btn-primary {
margin-top: 15px;
}

.projects-intro {
padding: 60px 0;
background: #fff;
}

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

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

.intro-content p {
font-size: 14px;
margin-bottom: 15px;
}

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

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

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.gallery-item {
background: #fff;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
width: 100%;
}

.gallery-info {
padding: 25px;
}

.gallery-info h3 {
margin-bottom: 10px;
color: var(--primary);
}

.gallery-info p {
font-size: 13px;
color: var(--text);
}

.services-overview {
padding: 60px 0;
background: #fff;
}

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

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

.service-item {
text-align: center;
padding: 25px;
border: 1px solid var(--border);
border-radius: 5px;
}

.service-item i {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 12px;
display: none;
}

.service-item h3 {
margin-bottom: 8px;
color: var(--primary);
}

.service-item p {
font-size: 13px;
color: var(--text);
}

.project-cta {
padding: 60px 0;
background: var(--primary);
color: #fff;
text-align: center;
}

.project-cta .cta-content h2 {
color: #fff;
margin-bottom: 15px;
}

.project-cta .cta-content p {
margin-bottom: 25px;
}

.project-cta .btn-primary {
background: var(--accent);
color: var(--dark);
}

.contact-hero {
background: linear-gradient(135deg, var(--light) 0%, #e8e4df 100%);
padding: 60px 0;
text-align: center;
}

.contact-hero h1 {
margin-bottom: 15px;
color: var(--primary);
}

.contact-hero p {
font-size: 15px;
color: var(--text);
}

.contact-main {
padding: 60px 0;
background: #fff;
}

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

.contact-form-section h2 {
margin-bottom: 25px;
color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.contact-info-section h2 {
margin-bottom: 25px;
color: var(--primary);
}

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

.contact-item {
display: flex;
gap: 15px;
margin-bottom: 5px;
}

.contact-item strong {
display: block;
font-size: 14px;
margin-bottom: 5px;
color: var(--primary);
}

.contact-item p {
font-size: 13px;
color: var(--text);
line-height: 1.6;
}

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

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

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

.thankyou-content,
.error-content {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
background: var(--light);
}

.thankyou-message,
.error-message {
text-align: center;
max-width: 600px;
}

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

.error-message h1 {
font-size: 5rem;
color: var(--secondary);
}

.error-message h2 {
margin-bottom: 15px;
color: var(--primary);
}

.thankyou-message p,
.error-message p {
font-size: 15px;
margin-bottom: 15px;
color: var(--text);
}

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

.policy-content {
padding: 60px 0;
background: #fff;
}

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

.policy-date {
font-size: 13px;
color: #666;
margin-bottom: 30px;
}

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

.policy-section h2 {
margin-bottom: 15px;
color: var(--primary);
font-size: 1.6rem;
}

.policy-section p {
font-size: 14px;
margin-bottom: 12px;
line-height: 1.7;
}

.policy-section strong {
color: var(--primary);
}

.footer {
background: var(--dark);
color: #fff;
padding: 25px 0;
}

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

.footer-info p {
font-size: 13px;
}

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

.footer-links a {
font-size: 12px;
color: #ccc;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--accent);
}

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

h2 {
font-size: 1.6rem;
}

h3 {
font-size: 1.2rem;
}

.hero {
min-height: 70vh;
}

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

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

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 2rem;
}

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
border-bottom: 1px solid var(--border);
}

.nav.active {
max-height: 300px;
}

.nav a {
padding: 15px 20px;
border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

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

h1 {
font-size: 1.7rem;
}

h2 {
font-size: 1.4rem;
}

.hero {
padding: 40px 0;
min-height: 60vh;
}

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

.hero-content p {
font-size: 0.95rem;
}

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

.stat-number {
font-size: 1.8rem;
}

.features,
.showcase,
.collections-preview,
.testimonials,
.cta,
.products,
.collection-categories,
.collection-info,
.projects-intro,
.projects-gallery,
.services-overview,
.project-cta,
.contact-main,
.map-section {
padding: 40px 0;
}

.features-grid,
.collections-grid,
.testimonials-grid,
.products-grid,
.categories-grid,
.gallery-grid,
.services-grid {
grid-template-columns: 1fr;
gap: 20px;
}

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

.privacy-actions {
width: 100%;
justify-content: center;
}
}

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

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.3rem;
}

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

.hero-content p {
font-size: 0.9rem;
margin-bottom: 25px;
}

.stat-number {
font-size: 1.6rem;
}

.stat-label {
font-size: 0.8rem;
}

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

.hero-stats {
margin-top: 30px;
}

.features-grid,
.collections-grid,
.testimonials-grid {
gap: 15px;
}

.feature-card,
.collection-item,
.testimonial-card {
padding: 20px 15px;
}
}

.process-section {
padding: 80px 0;
background: #fff;
}

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

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

.process-step {
text-align: center;
padding: 30px 20px;
border-radius: 8px;
background: var(--light);
transition: all 0.3s ease;
}

.process-step:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-number {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background: var(--secondary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
font-family: 'Cormorant Garamond', serif;
}

.process-step h3 {
margin-bottom: 12px;
color: var(--primary);
}

.process-step p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

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

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

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

.value-card {
background: #fff;
padding: 35px 25px;
border-radius: 8px;
border-left: 4px solid var(--accent);
transition: all 0.3s ease;
}

.value-card:hover {
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
margin-bottom: 15px;
color: var(--primary);
}

.value-card p {
font-size: 14px;
color: var(--text);
line-height: 1.7;
}

.image-showcase {
padding: 80px 0;
background: #fff;
}

.image-showcase h2 {
text-align: center;
margin-bottom: 50px;
color: var(--primary);
}

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

.showcase-card {
position: relative;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-card img {
width: 100%;
transition: transform 0.4s ease;
}

.showcase-card:hover img {
transform: scale(1.05);
}

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

.showcase-overlay h3 {
color: #fff;
margin-bottom: 8px;
}

.showcase-overlay p {
font-size: 13px;
color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
.process-grid,
.values-grid,
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.process-section,
.values-section,
.image-showcase {
padding: 60px 0;
}
}

@media (max-width: 480px) {
.process-section,
.values-section,
.image-showcase {
padding: 40px 0;
}

.process-step,
.value-card {
padding: 25px 20px;
}
}

@media (max-width: 320px) {
.step-number {
width: 50px;
height: 50px;
font-size: 1.3rem;
}

.showcase-overlay {
padding: 15px;
}
}
