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

:root {
--primary: #d4526e;
--secondary: #f8b500;
--accent: #13547a;
--dark: #2c3e50;
--light: #f8f9fa;
--text: #333;
}

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

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

.header {
background: linear-gradient(135deg, var(--primary), var(--accent));
padding: 15px 0;
position: relative;
z-index: 100;
}

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

.logo {
font-family: 'Comfortaa', cursive;
font-size: 22px;
font-weight: 700;
color: white;
}

.nav-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 22px;
cursor: pointer;
}

.nav-menu {
display: flex;
list-style: none;
gap: 25px;
}

.nav-menu a {
color: white;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.nav-menu a:hover {
color: var(--secondary);
}

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

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('../hobby_kreativ_media/hero-bg.jpg') center/cover;
opacity: 0.15;
z-index: 1;
}

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

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

.shape-1 {
width: 400px;
height: 400px;
background: var(--secondary);
top: -100px;
right: -100px;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 300px;
height: 300px;
background: white;
bottom: -50px;
left: 10%;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--secondary);
top: 50%;
right: 20%;
animation: float 18s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(180deg); }
}

.mega-hero-content {
position: relative;
z-index: 3;
text-align: center;
color: white;
padding: 60px 0;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.mega-hero-content h1 {
font-family: 'Comfortaa', cursive;
font-size: 56px;
margin-bottom: 20px;
line-height: 1.2;
}

.mega-hero-content h1 .highlight {
color: var(--secondary);
display: block;
}

.mega-hero-content p {
font-size: 18px;
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-light, .btn-outline {
display: inline-block;
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
background: #e0a500;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(248, 181, 0, 0.3);
}

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

.btn-secondary:hover {
background: #0f4461;
transform: translateY(-2px);
}

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

.btn-light:hover {
background: var(--light);
transform: translateY(-2px);
}

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

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

.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 36px;
font-weight: 700;
font-family: 'Comfortaa', cursive;
color: var(--secondary);
}

.stat-label {
font-size: 13px;
opacity: 0.9;
}

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

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

.feature-card {
background: white;
padding: 30px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

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

.feature-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.feature-icon i {
font-size: 32px;
color: white;
}

.feature-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

.feature-card p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.section-label {
display: inline-block;
background: var(--secondary);
color: var(--dark);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.section-label.light {
background: rgba(255, 255, 255, 0.2);
color: white;
}

.about-visual {
padding: 80px 0;
}

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

.about-image-wrapper {
position: relative;
}

.about-image-wrapper img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: var(--secondary);
color: var(--dark);
padding: 12px 24px;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
}

.about-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
line-height: 1.3;
}

.about-content p {
margin-bottom: 18px;
color: #555;
line-height: 1.8;
}

.about-features {
margin: 25px 0;
}

.about-feature-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.about-feature-item i {
color: var(--primary);
font-size: 18px;
}

.about-feature-item span {
font-size: 14px;
color: #555;
}

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

.section-header h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 15px;
color: var(--dark);
}

.section-header p {
font-size: 16px;
color: #666;
max-width: 600px;
margin: 0 auto;
}

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

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

.category-card {
background: white;
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.category-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.category-icon i {
font-size: 28px;
color: white;
}

.category-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.category-card p {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}

.category-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.category-link:hover {
gap: 12px;
}

.workshop-highlight {
padding: 80px 0;
background: linear-gradient(135deg, var(--accent), var(--primary));
color: white;
}

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

.workshop-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
}

.workshop-content p {
font-size: 16px;
margin-bottom: 30px;
line-height: 1.8;
opacity: 0.95;
}

.workshop-benefits {
margin-bottom: 30px;
}

.benefit-point {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.benefit-point i {
color: var(--secondary);
font-size: 20px;
flex-shrink: 0;
margin-top: 3px;
}

.benefit-point h4 {
font-size: 16px;
margin-bottom: 5px;
}

.benefit-point p {
font-size: 14px;
margin: 0;
opacity: 0.9;
}

.workshop-image-wrapper img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

.testimonial-modern {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
border-left: 4px solid var(--primary);
}

.testimonial-stars {
color: var(--secondary);
margin-bottom: 15px;
font-size: 14px;
}

.testimonial-modern p {
font-size: 15px;
color: #555;
font-style: italic;
margin-bottom: 20px;
line-height: 1.7;
}

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

.author-info span {
font-size: 13px;
color: #999;
}

.inspiration-section {
padding: 80px 0;
background: var(--light);
text-align: center;
}

.inspiration-content {
max-width: 800px;
margin: 0 auto;
}

.inspiration-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.inspiration-content p {
font-size: 16px;
color: #555;
margin-bottom: 40px;
line-height: 1.8;
}

.inspiration-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 40px;
}

.inspiration-stat {
display: flex;
align-items: center;
gap: 15px;
text-align: left;
}

.inspiration-stat i {
font-size: 32px;
color: var(--primary);
}

.inspiration-stat strong {
display: block;
font-size: 16px;
color: var(--dark);
margin-bottom: 3px;
}

.inspiration-stat span {
font-size: 13px;
color: #666;
}

.newsletter-section {
padding: 60px 0;
background: var(--dark);
}

.newsletter-box {
background: linear-gradient(135deg, var(--primary), var(--accent));
padding: 50px;
border-radius: 12px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.newsletter-content {
flex: 1;
color: white;
}

.newsletter-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 28px;
margin-bottom: 10px;
}

.newsletter-content p {
font-size: 15px;
opacity: 0.95;
}

.footer {
background: var(--dark);
color: white;
padding: 20px 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;
}

.footer-links a {
color: white;
text-decoration: none;
transition: all 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(44, 62, 80, 0.98);
color: white;
padding: 20px;
z-index: 1000;
display: none;
}

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

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

.privacy-content p {
flex: 1;
font-size: 14px;
}

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

.privacy-buttons a {
color: var(--secondary);
text-decoration: underline;
font-size: 14px;
}

.privacy-buttons button {
background: var(--secondary);
color: var(--dark);
border: none;
padding: 10px 20px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
}

.page-hero-modern {
position: relative;
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: white;
overflow: hidden;
}

.page-hero-content {
position: relative;
z-index: 3;
text-align: center;
}

.page-hero-content h1 {
font-family: 'Comfortaa', cursive;
font-size: 42px;
margin-bottom: 15px;
}

.page-hero-content p {
font-size: 17px;
opacity: 0.95;
}

.products-showcase {
padding: 80px 0;
}

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

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

.product-card-modern:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary);
color: var(--dark);
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
z-index: 2;
}

.product-image-modern {
width: 100%;
height: 280px;
overflow: hidden;
}

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

.product-placeholder {
width: 100%;
height: 100%;
background: var(--light);
display: flex;
align-items: center;
justify-content: center;
}

.product-placeholder i {
font-size: 60px;
color: var(--accent);
}

.product-info {
padding: 25px;
}

.product-info h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.product-info p {
font-size: 14px;
color: #666;
margin-bottom: 18px;
line-height: 1.7;
}

.product-price {
font-size: 28px;
font-weight: 700;
color: var(--primary);
margin-bottom: 18px;
font-family: 'Comfortaa', cursive;
}

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

.materials-grid {
display: grid;
gap: 25px;
}

.material-card {
background: white;
padding: 30px;
border-radius: 12px;
display: flex;
gap: 25px;
transition: all 0.3s ease;
}

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

.material-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.material-icon i {
font-size: 28px;
color: white;
}

.material-content h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
}

.material-content p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
line-height: 1.7;
}

.material-list {
list-style: none;
}

.material-list li {
font-size: 13px;
color: #777;
padding-left: 20px;
position: relative;
margin-bottom: 8px;
}

.material-list li:before {
content: "→";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.quality-promise {
padding: 80px 0;
text-align: center;
}

.quality-content {
max-width: 900px;
margin: 0 auto;
}

.quality-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.quality-content p {
font-size: 16px;
color: #555;
margin-bottom: 40px;
line-height: 1.8;
}

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

.quality-item {
display: flex;
align-items: center;
gap: 15px;
text-align: left;
}

.quality-item i {
font-size: 32px;
color: var(--secondary);
flex-shrink: 0;
}

.quality-item h4 {
font-size: 16px;
margin-bottom: 5px;
color: var(--dark);
}

.quality-item p {
font-size: 13px;
color: #666;
margin: 0;
}

.workshops-intro-modern {
padding: 80px 0;
}

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

.intro-text h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.intro-text p {
font-size: 15px;
color: #555;
margin-bottom: 18px;
line-height: 1.8;
}

.intro-stats {
display: grid;
gap: 20px;
}

.stat-box {
background: linear-gradient(135deg, var(--primary), var(--accent));
padding: 30px;
border-radius: 12px;
text-align: center;
color: white;
}

.stat-box .stat-number {
font-size: 42px;
font-weight: 700;
font-family: 'Comfortaa', cursive;
color: var(--secondary);
margin-bottom: 8px;
}

.stat-box .stat-text {
font-size: 14px;
opacity: 0.95;
}

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

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

.course-card-modern {
background: white;
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
}

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

.course-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.course-icon-modern {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.course-icon-modern i {
font-size: 28px;
color: white;
}

.course-level {
background: var(--secondary);
color: var(--dark);
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
}

.course-card-modern h3 {
font-size: 20px;
margin-bottom: 15px;
color: var(--dark);
}

.course-card-modern p {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.course-details-modern {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 15px;
padding: 15px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}

.detail-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #777;
}

.detail-item i {
color: var(--primary);
font-size: 14px;
}

.course-includes {
font-size: 13px;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}

.course-includes strong {
color: var(--dark);
}

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

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

.benefit-card {
text-align: center;
padding: 30px;
background: white;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.benefit-icon i {
font-size: 32px;
color: white;
}

.benefit-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

.benefit-card p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

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

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

.contact-info-box h2 {
font-family: 'Comfortaa', cursive;
font-size: 32px;
margin-bottom: 18px;
color: var(--dark);
}

.contact-info-box p {
font-size: 15px;
color: #555;
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details {
display: grid;
gap: 25px;
}

.contact-item {
display: flex;
gap: 18px;
align-items: flex-start;
}

.contact-item i {
font-size: 26px;
color: var(--primary);
flex-shrink: 0;
margin-top: 3px;
}

.contact-item h3 {
font-size: 16px;
margin-bottom: 6px;
color: var(--dark);
}

.contact-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.contact-form-box {
background: var(--light);
padding: 35px;
border-radius: 12px;
}

.form-group {
margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 8px;
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);
}

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

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

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

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

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

.map-section h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

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

.visit-us {
padding: 80px 0;
text-align: center;
}

.visit-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 18px;
color: var(--dark);
}

.visit-content p {
font-size: 16px;
color: #555;
max-width: 700px;
margin: 0 auto;
line-height: 1.8;
}

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

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

.thankyou-icon {
font-size: 80px;
color: #28a745;
margin-bottom: 25px;
}

.thankyou-content h1, .error-content h1 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}

.thankyou-content p, .error-content p {
font-size: 16px;
color: #555;
margin-bottom: 18px;
line-height: 1.7;
}

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

.error-number {
font-size: 120px;
font-weight: 700;
color: var(--primary);
margin-bottom: 25px;
font-family: 'Comfortaa', cursive;
}

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

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
font-family: 'Comfortaa', cursive;
font-size: 40px;
margin-bottom: 12px;
color: var(--dark);
}

.policy-date {
font-size: 14px;
color: #999;
margin-bottom: 35px;
}

.policy-content h2 {
font-size: 26px;
margin-top: 35px;
margin-bottom: 18px;
color: var(--dark);
}

.policy-content h3 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--dark);
}

.policy-content p {
font-size: 15px;
color: #555;
margin-bottom: 18px;
line-height: 1.8;
}

.policy-content ul, .policy-content ol {
margin-left: 25px;
margin-bottom: 18px;
}

.policy-content li {
font-size: 15px;
color: #555;
margin-bottom: 10px;
line-height: 1.8;
}

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

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--accent);
flex-direction: column;
padding: 20px;
gap: 15px;
display: none;
}

.nav-menu.active {
display: flex;
}

.mega-hero {
min-height: 70vh;
}

.mega-hero-content h1 {
font-size: 38px;
}

.mega-hero-content p {
font-size: 16px;
}

.hero-stats {
gap: 30px;
}

.stat-number {
font-size: 28px;
}

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

.workshop-grid .workshop-content {
order: 2;
}

.workshop-grid .workshop-image-wrapper {
order: 1;
}

.newsletter-box {
padding: 35px;
text-align: center;
}

.newsletter-content h2 {
font-size: 24px;
}

.section-header h2, .about-content h2, .workshop-content h2, .quality-content h2, .intro-text h2, .visit-content h2 {
font-size: 28px;
}

.page-hero-content h1 {
font-size: 32px;
}
}

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

.logo {
font-size: 18px;
}

.mega-hero {
min-height: 60vh;
}

.mega-hero-content h1 {
font-size: 30px;
}

.mega-hero-content p {
font-size: 15px;
}

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

.btn-primary, .btn-secondary, .btn-light, .btn-outline {
width: 100%;
}

.stat-number {
font-size: 24px;
}

.stat-label {
font-size: 12px;
}

.section-header h2 {
font-size: 24px;
}

.page-hero-content h1 {
font-size: 28px;
}

.product-info h3, .course-card-modern h3 {
font-size: 18px;
}

.material-card {
flex-direction: column;
}

.intro-stats {
grid-template-columns: 1fr;
}

.course-details-modern {
flex-direction: column;
gap: 10px;
}

.quality-features, .inspiration-stats {
grid-template-columns: 1fr;
}

.policy-content h1 {
font-size: 30px;
}

.policy-content h2 {
font-size: 22px;
}

.error-number {
font-size: 80px;
}
}

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

.mega-hero {
min-height: 50vh;
}

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

.mega-hero-content h1 {
font-size: 26px;
}

.features, .about-visual, .categories-modern, .workshop-highlight, .testimonials-section, .inspiration-section, .products-showcase, .materials-categories, .quality-promise, .workshops-intro-modern, .courses-modern, .benefits-modern, .contact-section, .map-section, .visit-us {
padding: 50px 0;
}

.feature-card, .product-card-modern, .course-card-modern, .benefit-card {
padding: 20px;
}

.newsletter-box {
padding: 25px;
}

.shape-1, .shape-2, .shape-3 {
display: none;
}
}
