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

:root {
--primary-color: #d4756f;
--secondary-color: #f4a261;
--accent-color: #e76f51;
--dark-color: #264653;
--light-color: #f8f9fa;
--text-color: #2a2a2a;
--border-color: #e0e0e0;
--shadow: 0 2px 8px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
font-family: 'Quicksand', sans-serif;
color: var(--text-color);
line-height: 1.5;
font-size: 14px;
overflow-x: hidden;
}

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

.header {
background: linear-gradient(135deg, var(--dark-color) 0%, #1a4d5a 100%);
padding: 12px 0;
position: relative;
box-shadow: var(--shadow);
}

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

.logo a {
font-family: 'Comfortaa', cursive;
font-size: 20px;
font-weight: 700;
color: #fff;
text-decoration: none;
letter-spacing: 0.5px;
}

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

.nav a {
color: #fff;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: color 0.3s;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
color: #fff;
font-size: 22px;
cursor: pointer;
}

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

.hero-mega {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #1a4d5a 0%, var(--dark-color) 50%, #2d5a66 100%);
overflow: hidden;
padding: 80px 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(212, 117, 111, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
pointer-events: none;
}

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

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

.shape-2 {
width: 300px;
height: 300px;
background: var(--primary-color);
bottom: -50px;
left: 5%;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--accent-color);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: pulse 10s infinite ease-in-out;
}

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

@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
50% { transform: translate(-50%, -50%) scale(1.2); }
}

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

.hero-text {
text-align: left;
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(244, 162, 97, 0.2);
color: var(--secondary-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(244, 162, 97, 0.3);
}

.hero-text h1 {
font-family: 'Comfortaa', cursive;
font-size: 52px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 700;
}

.hero-text .highlight {
color: var(--secondary-color);
position: relative;
display: inline-block;
}

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

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

.btn-outline {
display: inline-block;
background: transparent;
color: #fff;
padding: 12px 28px;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 14px;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s;
}

.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: #fff;
}

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

.hero-stats .stat {
display: flex;
flex-direction: column;
}

.hero-stats .stat strong {
font-size: 28px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 5px;
}

.hero-stats .stat span {
font-size: 13px;
opacity: 0.8;
}

.hero-image {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
transform: rotate(2deg);
transition: transform 0.3s;
}

.hero-image-wrapper:hover {
transform: rotate(0deg) scale(1.02);
}

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

.hero-badge-float {
position: absolute;
top: 20px;
right: 20px;
background: var(--accent-color);
color: #fff;
padding: 10px 20px;
border-radius: 30px;
font-size: 12px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}



.btn-primary {
display: inline-block;
background: var(--dark-color);
color: #fff;
padding: 12px 28px;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #1a4d5a;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary-color);
padding: 10px 24px;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 13px;
border: 2px solid var(--primary-color);
transition: all 0.3s;
}

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

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

.section-label {
display: inline-block;
background: rgba(212, 117, 111, 0.1);
color: var(--primary-color);
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 10px;
letter-spacing: 0.5px;
text-transform: uppercase;
}

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

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

.feature-card:hover .feature-icon {
transform: scale(1.1) rotate(5deg);
}

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

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

.feature-card {
background: #fff;
padding: 25px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
transition: transform 0.3s;
}

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



.feature-card h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: var(--dark-color);
}

.feature-card p {
font-size: 13px;
color: #666;
}

.categories {
padding: 80px 0;
}

.category-card {
background: #fff;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s;
}

.category-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.category-image {
width: 100%;
height: 250px;
overflow: hidden;
position: relative;
}

.category-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.category-card:hover .category-image img {
transform: scale(1.1);
}

.category-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
display: flex;
align-items: center;
justify-content: center;
}

.category-placeholder i {
font-size: 64px;
color: var(--primary-color);
opacity: 0.3;
}

.category-content {
padding: 30px;
}

.categories h2,
.products-preview h2,
.about h2,
.products h2,
.materials-info h2,
.techniques h2,
.kit-benefits h2,
.project-types h2 {
font-family: 'Comfortaa', cursive;
font-size: 28px;
text-align: center;
margin-bottom: 35px;
color: var(--dark-color);
}

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



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

.category-card p {
font-size: 13px;
color: #666;
margin-bottom: 18px;
}

.products-preview {
padding: 80px 0;
background: var(--light-color);
}

.product-card {
background: #fff;
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: all 0.3s;
position: relative;
}

.product-badge {
position: absolute;
top: 15px;
left: 15px;
background: var(--accent-color);
color: #fff;
padding: 6px 15px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
z-index: 1;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.product-image-wrapper {
width: 100%;
height: 220px;
overflow: hidden;
position: relative;
}

.product-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
display: flex;
align-items: center;
justify-content: center;
}

.product-placeholder i {
font-size: 56px;
color: var(--primary-color);
opacity: 0.2;
}

.product-info {
padding: 25px;
}

.product-info h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: var(--dark-color);
}

.product-info p {
font-size: 13px;
color: #666;
margin-bottom: 15px;
line-height: 1.6;
}

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

.btn-cart {
background: var(--dark-color);
color: #fff;
padding: 8px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}

.btn-cart:hover {
background: #1a4d5a;
transform: translateX(3px);
}

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



.price {
display: block;
font-size: 22px;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 15px;
}

.about {
padding: 80px 0;
}

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

.about-text h2 {
text-align: left;
margin-bottom: 20px;
}

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

.about-stats {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.stat-item {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
padding: 25px;
border-radius: 12px;
text-align: center;
color: #fff;
}

.stat-icon {
width: 50px;
height: 50px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}

.stat-icon i {
font-size: 24px;
color: #fff;
}

.stat-item i {
font-size: 32px;
margin-bottom: 10px;
}

.stat-number {
display: block;
font-size: 28px;
font-weight: 700;
margin-bottom: 5px;
}

.stat-label {
display: block;
font-size: 13px;
}

.newsletter {
padding: 60px 0;
background: linear-gradient(135deg, var(--dark-color) 0%, #1a4d5a 100%);
color: #fff;
}

.newsletter-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.newsletter-content {
display: flex;
align-items: center;
gap: 20px;
}

.newsletter-content i {
font-size: 48px;
color: var(--secondary-color);
}

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

.newsletter-content p {
font-size: 14px;
opacity: 0.9;
}

.newsletter-form {
display: flex;
gap: 10px;
}

.newsletter-form input {
flex: 1;
padding: 12px 20px;
border: 2px solid rgba(255,255,255,0.2);
border-radius: 25px;
background: rgba(255,255,255,0.1);
color: #fff;
font-family: 'Quicksand', sans-serif;
font-size: 14px;
}

.newsletter-form input::placeholder {
color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
outline: none;
border-color: var(--secondary-color);
background: rgba(255,255,255,0.15);
}

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

.testimonials h2 {
font-family: 'Comfortaa', cursive;
font-size: 32px;
text-align: center;
margin-bottom: 50px;
color: var(--dark-color);
}

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

.testimonial-card {
background: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: var(--shadow);
position: relative;
}

.stars {
margin-bottom: 15px;
}

.stars i {
color: var(--secondary-color);
font-size: 14px;
margin-right: 2px;
}

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

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

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

.workshop {
padding: 80px 0;
}

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

.workshop-image {
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

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

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

.workshop-text p {
font-size: 15px;
line-height: 1.7;
color: #666;
margin-bottom: 25px;
}

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

.workshop-list li {
font-size: 14px;
color: #666;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 12px;
}

.workshop-list i {
color: var(--primary-color);
font-size: 16px;
}

.cta {
padding: 60px 0;
background: linear-gradient(135deg, var(--dark-color) 0%, #1a4d5a 100%);
text-align: center;
color: #fff;
}

.cta-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 30px;
margin-bottom: 15px;
color: #fff;
}

.cta-content p {
font-size: 15px;
margin-bottom: 25px;
}

.location {
padding: 50px 0;
background: var(--light-color);
}

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

.location-text .section-label {
display: inline-block;
background: var(--primary-color);
color: #fff;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}

.location-text h2 {
font-family: 'Comfortaa', cursive;
font-size: 28px;
margin-bottom: 15px;
color: var(--dark-color);
}

.location-text > p {
font-size: 14px;
color: #666;
margin-bottom: 25px;
line-height: 1.7;
}

.location-details {
display: grid;
gap: 20px;
margin-bottom: 25px;
}

.location-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.location-item i {
font-size: 22px;
color: var(--primary-color);
margin-top: 3px;
}

.location-item strong {
font-family: 'Comfortaa', cursive;
font-size: 15px;
color: var(--dark-color);
display: block;
margin-bottom: 5px;
}

.location-item p {
font-size: 13px;
color: #666;
margin: 0;
line-height: 1.6;
}

.location-image {
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
}

.location-image img {
width: 100%;
height: auto;
display: block;
}

.footer {
background: var(--dark-color);
color: #fff;
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 {
color: #fff;
text-decoration: none;
font-size: 12px;
transition: color 0.3s;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(38, 70, 83, 0.98);
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 {
color: #fff;
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.btn-accept {
background: var(--secondary-color);
color: #fff;
padding: 10px 24px;
border: none;
border-radius: 25px;
font-weight: 600;
font-size: 13px;
cursor: pointer;
transition: all 0.3s;
}

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

.btn-learn {
background: transparent;
color: #fff;
padding: 10px 24px;
border: 2px solid #fff;
border-radius: 25px;
font-weight: 600;
font-size: 13px;
text-decoration: none;
transition: all 0.3s;
}

.btn-learn:hover {
background: #fff;
color: var(--dark-color);
}

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

.page-hero h1 {
font-family: 'Comfortaa', cursive;
font-size: 32px;
margin-bottom: 12px;
}

.page-hero p {
font-size: 15px;
max-width: 700px;
margin: 0 auto;
}

.products {
padding: 50px 0;
}

.materials-info {
padding: 50px 0;
background: var(--light-color);
}

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

.info-card {
background: #fff;
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
}

.info-card i {
font-size: 32px;
color: var(--primary-color);
margin-bottom: 12px;
}

.info-card h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: var(--dark-color);
}

.info-card p {
font-size: 13px;
color: #666;
}

.techniques {
padding: 50px 0;
}

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

.techniques-list {
display: grid;
gap: 20px;
}

.technique-item {
display: flex;
gap: 15px;
align-items: flex-start;
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: var(--shadow);
}

.technique-item i {
font-size: 20px;
color: var(--accent-color);
margin-top: 3px;
}

.technique-item h3 {
font-family: 'Comfortaa', cursive;
font-size: 17px;
margin-bottom: 5px;
color: var(--dark-color);
}

.technique-item p {
font-size: 13px;
color: #666;
}

.kit-benefits {
padding: 50px 0;
background: var(--light-color);
}

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

.benefit-card {
background: #fff;
padding: 25px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
}

.benefit-card i {
font-size: 36px;
color: var(--secondary-color);
margin-bottom: 12px;
}

.benefit-card h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: var(--dark-color);
}

.benefit-card p {
font-size: 13px;
color: #666;
}

.project-types {
padding: 50px 0;
}

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

.type-card {
background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
padding: 25px;
border-radius: 12px;
border: 2px solid var(--border-color);
transition: all 0.3s;
}

.type-card:hover {
border-color: var(--primary-color);
}

.type-card i {
font-size: 36px;
color: var(--accent-color);
margin-bottom: 12px;
}

.type-card h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: var(--dark-color);
}

.type-card p {
font-size: 13px;
color: #666;
}

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

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

.contact-info-cards {
display: grid;
gap: 20px;
}

.contact-card {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
padding: 20px;
border-radius: 12px;
color: #fff;
}

.contact-card i {
font-size: 28px;
margin-bottom: 10px;
}

.contact-card h3 {
font-family: 'Comfortaa', cursive;
font-size: 17px;
margin-bottom: 8px;
}

.contact-card p {
font-size: 13px;
line-height: 1.6;
}

.contact-form-wrapper {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
font-family: 'Comfortaa', cursive;
font-size: 24px;
margin-bottom: 10px;
color: var(--dark-color);
text-align: left;
}

.form-intro {
font-size: 13px;
color: #666;
margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-family: 'Quicksand', sans-serif;
font-size: 13px;
transition: border-color 0.3s;
}

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

.form-group textarea {
resize: vertical;
}

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

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

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

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

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

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

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
}

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

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

.thank-you-content i,
.error-content i {
font-size: 64px;
color: var(--primary-color);
margin-bottom: 20px;
}

.error-content i {
color: var(--accent-color);
}

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

.error-content h1 {
font-size: 72px;
color: var(--accent-color);
}

.error-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 28px;
margin-bottom: 15px;
color: var(--dark-color);
}

.thank-you-content p,
.error-content p {
font-size: 15px;
color: #666;
margin-bottom: 30px;
line-height: 1.7;
}

.thank-you-buttons,
.error-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

.policy-content {
max-width: 900px;
margin: 0 auto;
background: #fff;
padding: 40px;
border-radius: 12px;
box-shadow: var(--shadow);
}

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

.update-date {
font-size: 12px;
color: #999;
margin-bottom: 30px;
}

.policy-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 22px;
margin-top: 30px;
margin-bottom: 15px;
color: var(--dark-color);
}

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

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

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

.policy-content li {
font-size: 14px;
color: #666;
margin-bottom: 8px;
line-height: 1.6;
}

@media (max-width: 768px) {
.nav ul {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark-color);
flex-direction: column;
padding: 20px;
gap: 15px;
box-shadow: var(--shadow);
}

.nav ul.active {
display: flex;
}

.menu-toggle {
display: block;
}

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

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

.hero-text {
text-align: center;
}

.hero-text h1 {
font-size: 36px;
}

.hero-buttons {
justify-content: center;
}

.hero-stats {
justify-content: center;
}

.hero-image-wrapper {
transform: rotate(0);
}

.about-content {
grid-template-columns: 1fr;
}

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

.location-content {
grid-template-columns: 1fr;
}

.location-image {
order: -1;
}

.newsletter-wrapper {
grid-template-columns: 1fr;
text-align: center;
}

.newsletter-content {
flex-direction: column;
}

.newsletter-form {
flex-direction: column;
}

.workshop-content {
grid-template-columns: 1fr;
}

.thank-you-content h1,
.error-content h2 {
font-size: 24px;
}

.error-content h1 {
font-size: 56px;
}

.policy-content {
padding: 25px;
}

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

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

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

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

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

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

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

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

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

.hero-buttons a {
width: 100%;
text-align: center;
}

.section-header h2,
.categories h2,
.products-preview h2,
.about h2,
.products h2 {
font-size: 24px;
}

.btn-primary {
padding: 10px 22px;
font-size: 13px;
}

.btn-secondary {
padding: 8px 18px;
font-size: 12px;
}

.features,
.categories,
.products-preview,
.about,
.newsletter,
.testimonials,
.workshop,
.cta,
.products,
.materials-info,
.techniques,
.kit-benefits,
.project-types,
.contact-section,
.map-section {
padding: 40px 0;
}

.thank-you-buttons,
.error-buttons {
flex-direction: column;
}

.thank-you-buttons a,
.error-buttons a {
width: 100%;
}

.shape-1 {
width: 250px;
height: 250px;
}

.shape-2 {
width: 200px;
height: 200px;
}

.shape-3 {
width: 150px;
height: 150px;
}
}

@media (min-width: 320px) and (max-width: 374px) {
.container {
padding: 0 10px;
}

.logo a {
font-size: 16px;
}

.hero-text h1 {
font-size: 24px;
}

.hero-text p {
font-size: 14px;
}

.feature-card,
.category-card,
.product-card {
padding: 18px;
}

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

.hero-stats .stat {
text-align: center;
}
}
