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

:root {
--primary-color: #8B4789;
--secondary-color: #E67E22;
--text-dark: #2C3E50;
--bg-light: #F8F9FA;
--white: #FFFFFF;
--border-color: #E0E0E0;
--success-color: #27AE60;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Comfortaa', cursive;
font-weight: 700;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

h3 {
font-size: 1.3rem;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(44, 62, 80, 0.98);
color: var(--white);
padding: 15px 20px;
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;
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
flex-wrap: wrap;
}

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

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

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 5px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

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

.btn-accept:hover {
background: #D35400;
}

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

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

.header {
background: linear-gradient(135deg, var(--primary-color), #6A3668);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

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

.logo a {
font-family: 'Comfortaa', cursive;
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
}

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

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

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

.nav a {
color: var(--white);
font-weight: 600;
font-size: 14px;
padding: 8px 15px;
border-radius: 5px;
transition: all 0.3s ease;
}

.nav a:hover, .nav a.active {
background: rgba(255, 255, 255, 0.2);
}

.hero-mega {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #8B4789 0%, #6A3668 50%, #4A2448 100%);
}

.hero-mega-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(139, 71, 137, 0.2) 0%, transparent 50%);
z-index: 1;
}

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

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

.hero-mega-text {
color: var(--white);
}

.hero-label {
display: inline-block;
background: rgba(230, 126, 34, 0.2);
color: var(--white);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(230, 126, 34, 0.3);
}

.hero-mega-text h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 20px;
color: var(--white);
}

.hero-mega-text p {
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-mega-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

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

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

.hero-mega-stats {
display: flex;
gap: 30px;
flex-wrap: wrap;
}

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

.stat-num {
font-size: 2.2rem;
font-weight: 700;
color: var(--secondary-color);
line-height: 1;
}

.stat-text {
font-size: 13px;
opacity: 0.9;
margin-top: 5px;
}

.hero-mega-visual {
position: relative;
height: 500px;
}

.hero-card {
position: absolute;
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transition: transform 0.3s ease;
}

.hero-card:hover {
transform: translateY(-10px) scale(1.02);
}

.hero-card-1 {
top: 0;
left: 0;
width: 300px;
z-index: 2;
}

.hero-card-2 {
bottom: 0;
right: 0;
width: 280px;
z-index: 1;
}

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

.hero-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary-color);
color: var(--white);
padding: 6px 15px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

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

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

.btn-primary:hover {
background: #D35400;
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);
}

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

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

.feature-card {
background: var(--white);
padding: 30px 25px;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 2px 15px rgba(0,0,0,0.06);
border-left: 4px solid var(--secondary-color);
}

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

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

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

.products-preview, .products-section {
padding: 60px 0;
}

.products-preview h2 {
text-align: center;
margin-bottom: 50px;
color: var(--primary-color);
font-size: 2rem;
}

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

.product-card {
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

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

.product-image {
width: 100%;
height: 280px;
overflow: hidden;
background: var(--bg-light);
}

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

.product-card h3 {
padding: 15px 20px 5px;
font-size: 1.1rem;
}

.product-card p {
padding: 0 20px;
font-size: 13px;
color: var(--text-dark);
margin-bottom: 10px;
line-height: 1.7;
}

.product-card .price {
display: block;
padding: 0 20px;
font-size: 1.4rem;
font-weight: 700;
color: var(--secondary-color);
margin: 10px 0;
}

.product-card .btn-secondary {
margin: 15px 20px 20px;
padding: 10px 25px;
font-size: 13px;
}

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

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

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

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

.story-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.workshop-highlight {
padding: 80px 0;
}

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

.workshop-feature {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
background: var(--white);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.workshop-feature-content {
padding: 40px;
}

.workshop-tag {
display: inline-block;
background: var(--secondary-color);
color: var(--white);
padding: 6px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}

.workshop-feature-content h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--text-dark);
}

.workshop-feature-content p {
margin-bottom: 25px;
line-height: 1.8;
color: var(--text-dark);
}

.workshop-details {
list-style: none;
margin-bottom: 30px;
}

.workshop-details li {
padding: 10px 0;
padding-left: 25px;
position: relative;
color: var(--text-dark);
}

.workshop-details li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
}

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

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

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

.community-card {
background: var(--white);
padding: 35px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.06);
transition: transform 0.3s ease;
}

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

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

.community-card p {
line-height: 1.8;
color: var(--text-dark);
}

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

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

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

.instructor-card {
background: var(--bg-light);
padding: 35px;
border-radius: 15px;
text-align: center;
transition: all 0.3s ease;
}

.instructor-card:hover {
background: var(--white);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instructor-card h3 {
color: var(--text-dark);
margin-bottom: 8px;
}

.instructor-title {
display: block;
color: var(--secondary-color);
font-weight: 600;
font-size: 14px;
margin-bottom: 15px;
}

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

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

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

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

.visit-info p {
margin-bottom: 25px;
line-height: 1.8;
color: var(--text-dark);
}

.visit-hours {
background: var(--white);
padding: 25px;
border-radius: 10px;
margin-bottom: 30px;
}

.visit-hours h4 {
color: var(--primary-color);
margin-bottom: 10px;
}

.visit-hours p {
margin: 0;
line-height: 1.8;
}

.visit-map img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.page-hero {
background: linear-gradient(135deg, rgba(139, 71, 137, 0.9), rgba(106, 54, 104, 0.9));
padding: 60px 0;
text-align: center;
color: var(--white);
}

.page-hero h1 {
font-size: 2.2rem;
margin-bottom: 10px;
}

.page-hero p {
font-size: 1.1rem;
}

.categories-section, .info-section, .benefits-section {
padding: 60px 0;
background: var(--bg-light);
}

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

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

.category-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
border-top: 3px solid var(--secondary-color);
}

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

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

.category-card p {
font-size: 13px;
color: var(--text-dark);
line-height: 1.7;
}

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

.info-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
border-left: 4px solid var(--primary-color);
}

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

.info-card p {
font-size: 14px;
color: var(--text-dark);
line-height: 1.8;
}

.benefit-item {
background: var(--white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
border-left: 4px solid var(--secondary-color);
}

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

.benefit-item p {
font-size: 14px;
color: var(--text-dark);
line-height: 1.8;
}

.workshops-list {
display: flex;
flex-direction: column;
gap: 30px;
}

.workshop-item {
background: var(--white);
padding: 35px;
border-radius: 15px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.workshop-details {
width: 100%;
}

.workshop-details h3 {
margin-bottom: 15px;
color: var(--primary-color);
font-size: 1.5rem;
}

.workshop-details p {
font-size: 14px;
color: var(--text-dark);
margin-bottom: 20px;
line-height: 1.8;
}

.workshop-meta {
display: flex;
gap: 25px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.workshop-meta span {
font-size: 13px;
color: var(--text-dark);
font-weight: 600;
padding: 8px 15px;
background: var(--bg-light);
border-radius: 20px;
}

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

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

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

.project-card {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
border-top: 3px solid var(--secondary-color);
}

.project-card:hover {
background: var(--white);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
transform: translateY(-5px);
}

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

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

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

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

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

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

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

.contact-info p {
color: var(--text-dark);
margin-bottom: 25px;
}

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

.contact-item {
display: flex;
gap: 15px;
align-items: flex-start;
padding: 15px;
background: var(--bg-light);
border-radius: 10px;
}

.contact-item h3 {
font-size: 1rem;
margin-bottom: 5px;
color: var(--primary-color);
}

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

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

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

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

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

.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(139, 71, 137, 0.1);
}

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

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

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

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

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

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

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-cta {
padding: 60px 0;
}

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

.cta-card {
background: var(--bg-light);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--primary-color);
}

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

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

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

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

.thankyou-icon {
font-size: 5rem;
color: var(--success-color);
margin-bottom: 20px;
}

.thankyou-icon i {
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
0% {
transform: scale(0);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}

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

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

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

.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}

.error-content h1 {
color: var(--text-dark);
margin-bottom: 15px;
}

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

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

.error-links h3 {
margin-bottom: 20px;
color: var(--primary-color);
}

.quick-links {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.quick-links a {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: var(--bg-light);
border-radius: 5px;
font-size: 14px;
font-weight: 600;
color: var(--text-dark);
}

.quick-links a:hover {
background: var(--primary-color);
color: var(--white);
}

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

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

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

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

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

.policy-content h3 {
color: var(--text-dark);
margin-top: 20px;
margin-bottom: 10px;
font-size: 1.1rem;
}

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

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
padding: 0 20px;
gap: 10px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.nav.active {
max-height: 400px;
padding: 20px;
}

.hero-mega {
min-height: auto;
padding: 60px 0;
}

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

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

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

.hero-mega-visual {
height: 400px;
margin: 0 auto;
max-width: 400px;
}

.hero-card-1 {
width: 250px;
}

.hero-card-2 {
width: 230px;
}

.story-content, .workshop-feature, .visit-content, .contact-wrapper {
grid-template-columns: 1fr;
}

.workshop-feature-image {
height: 300px;
}

.workshop-feature-content {
padding: 30px;
}

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.4rem;
}

h3 {
font-size: 1.1rem;
}
}

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

.container {
padding: 0 15px;
}

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

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

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

.hero-mega-buttons {
flex-direction: column;
}

.hero-mega-buttons .btn-primary,
.hero-mega-buttons .btn-outline {
width: 100%;
text-align: center;
}

.hero-mega-visual {
height: 350px;
}

.hero-card-1 {
width: 200px;
}

.hero-card-2 {
width: 180px;
}

.hero-mega-stats {
gap: 20px;
}

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

.features, .products-preview, .story-section, .workshop-highlight, .community-section, .instructor-section, .visit-section {
padding: 40px 0;
}

.features-grid, .products-grid, .community-grid, .instructor-grid {
grid-template-columns: 1fr;
gap: 20px;
}

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

.feature-card, .product-card, .community-card, .instructor-card {
padding: 20px;
}

.product-image {
height: 220px;
}

.workshop-feature-content {
padding: 25px 20px;
}

.workshop-feature-content h3 {
font-size: 1.4rem;
}

.visit-hours {
padding: 20px;
}

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

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

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

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

.thankyou-section, .error-section {
padding: 60px 0;
}

.error-code {
font-size: 4rem;
}

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

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.3rem;
}

h3 {
font-size: 1rem;
}

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

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

.hero-mega-text h1 {
font-size: 1.4rem;
}

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

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

.hero-mega-visual {
height: 300px;
}

.hero-card-1 {
width: 180px;
}

.hero-card-2 {
width: 160px;
}

.product-image {
height: 200px;
}

h1 {
font-size: 1.3rem;
}

h2 {
font-size: 1.2rem;
}
}
