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

:root {
--primary: #2d5a8c;
--secondary: #e67e22;
--accent: #f39c12;
--dark: #2c3e50;
}

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

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

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

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

.header-main {
background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
padding: 15px 0;
position: relative;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 100;
}

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

.logo a {
font-family: 'Syne', sans-serif;
font-size: 1rem;
font-weight: 700;
color: #fff;
}

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

.nav-link {
color: #fff;
font-size: 14px;
padding: 8px 0;
position: relative;
}

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

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

.hero-mega {
position: relative;
height: 600px;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(45,90,140,0.9) 0%, rgba(30,58,95,0.85) 100%);
z-index: 2;
}

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

.hero-mega-content {
max-width: 700px;
color: #fff;
}

.hero-badge {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
}

.hero-mega-content h1 {
font-size: 3.2rem;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-mega-content p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.95;
}

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

.btn-hero-primary {
background: var(--secondary);
color: #fff;
padding: 14px 32px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
}

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

.btn-hero-secondary {
background: transparent;
color: #fff;
padding: 14px 32px;
border-radius: 6px;
border: 2px solid #fff;
font-weight: 500;
font-size: 15px;
}

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

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

.hero-feature-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.hero-feature-item i {
font-size: 1.2rem;
color: var(--accent);
}

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

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

.section-header-center p {
color: #7f8c8d;
max-width: 600px;
margin: 0 auto;
}

.about-intro {
padding: 80px 0;
background: #f8f9fa;
}

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

.about-text p {
color: #7f8c8d;
margin-bottom: 15px;
line-height: 1.8;
}

.link-arrow-dark {
color: var(--primary);
font-weight: 500;
font-size: 15px;
}

.link-arrow-dark:hover {
color: var(--secondary);
}

.link-arrow-dark i {
margin-left: 5px;
font-size: 13px;
}

.about-image {
position: relative;
}

.about-image img {
border-radius: 12px;
width: 100%;
}

.about-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: var(--secondary);
color: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
}

.badge-number {
display: block;
font-size: 2rem;
font-weight: 700;
font-family: 'Syne', sans-serif;
}

.badge-text {
display: block;
font-size: 13px;
}

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

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

.category-item {
background: #f8f9fa;
padding: 30px 25px;
border-radius: 10px;
transition: all 0.3s ease;
}

.category-item:hover {
background: #fff;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transform: translateY(-3px);
}

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

.category-item p {
font-size: 14px;
color: #7f8c8d;
margin-bottom: 15px;
line-height: 1.6;
}

.link-arrow {
color: var(--secondary);
font-weight: 500;
font-size: 14px;
}

.link-arrow:hover {
color: var(--primary);
}

.link-arrow i {
margin-left: 5px;
font-size: 12px;
}

.workshop-highlight {
padding: 80px 0;
background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
color: #fff;
}

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

.workshop-image img {
border-radius: 12px;
width: 100%;
}

.workshop-text .section-label {
color: #fff;
opacity: 0.9;
}

.workshop-text p {
margin-bottom: 25px;
opacity: 0.95;
line-height: 1.8;
}

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

.highlight-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
}

.highlight-item i {
color: #fff;
font-size: 1.1rem;
}

.btn-secondary {
background: #fff;
color: var(--primary);
padding: 12px 30px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
display: inline-block;
}

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

.why-choose {
padding: 80px 0;
background: #f8f9fa;
}

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

.feature-card {
background: #fff;
padding: 30px 25px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.feature-card p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.7;
}

.testimonials {
padding: 80px 0;
}

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

.testimonial-card {
background: #f8f9fa;
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--secondary);
}

.testimonial-card p {
font-size: 15px;
line-height: 1.7;
color: var(--dark);
margin-bottom: 20px;
font-style: italic;
}

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

.testimonial-author span {
font-size: 13px;
color: #7f8c8d;
}

.location-section {
padding: 80px 0;
background: #f8f9fa;
}

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

.location-info {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 15px;
}

.info-item i {
font-size: 1.5rem;
color: var(--primary);
margin-top: 3px;
}

.info-item strong {
display: block;
margin-bottom: 5px;
font-size: 1rem;
}

.info-item p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.6;
}

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

.newsletter-cta {
padding: 60px 0;
background: var(--primary);
color: #fff;
}

.newsletter-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.newsletter-text h2 {
margin-bottom: 10px;
}

.newsletter-text p {
opacity: 0.9;
}

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

.newsletter-input {
flex: 1;
padding: 14px 20px;
border: none;
border-radius: 6px;
font-size: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.btn-newsletter {
background: var(--secondary);
color: #fff;
padding: 14px 30px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
font-family: 'Space Grotesk', sans-serif;
}

.btn-newsletter:hover {
background: #d35400;
}

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

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

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

.footer-col p {
font-size: 13px;
line-height: 1.7;
opacity: 0.8;
}

.footer-col a {
display: block;
font-size: 13px;
opacity: 0.8;
margin-bottom: 8px;
}

.footer-col a:hover {
opacity: 1;
color: var(--accent);
}

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

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

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

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

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

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

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

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

.product-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 10px;
padding: 30px 25px;
text-align: center;
transition: all 0.3s ease;
}

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

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

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

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--secondary);
margin-bottom: 20px;
font-family: 'Syne', sans-serif;
}

.btn-product {
background: var(--primary);
color: #fff;
padding: 12px 28px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
display: inline-block;
}

.btn-product:hover {
background: #1e3a5f;
}

.supplies-info {
padding: 80px 0;
background: #f8f9fa;
}

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

.info-block {
padding: 20px;
}

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

.info-block p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.7;
}

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

.brands-features {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 30px;
}

.brand-feature {
background: #f8f9fa;
padding: 15px 25px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
color: var(--dark);
}

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

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

.workshop-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 10px;
padding: 30px 25px;
transition: all 0.3s ease;
}

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

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

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

.workshop-details {
display: flex;
gap: 15px;
margin-bottom: 20px;
font-size: 13px;
color: #7f8c8d;
flex-wrap: wrap;
}

.btn-workshop {
background: var(--secondary);
color: #fff;
padding: 12px 28px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
display: inline-block;
}

.btn-workshop:hover {
background: #d35400;
}

.workshop-benefits {
padding: 80px 0;
background: #f8f9fa;
}

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

.benefit-item {
background: #fff;
padding: 30px 25px;
border-radius: 10px;
}

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

.benefit-item p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.6;
}

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

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

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

.info-column p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.7;
}

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

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

.contact-form-area h2 {
margin-bottom: 10px;
}

.contact-form-area > p {
color: #7f8c8d;
margin-bottom: 30px;
font-size: 14px;
}

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

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

.form-group label {
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid #e0e0e0;
border-radius: 6px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
}

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

.checkbox-group {
flex-direction: row;
}

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

.checkbox-label input {
margin-top: 3px;
}

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

.btn-submit {
background: var(--secondary);
color: #fff;
padding: 14px 30px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
font-family: 'Space Grotesk', sans-serif;
}

.btn-submit:hover {
background: #d35400;
}

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

.contact-card {
background: #f8f9fa;
padding: 25px 20px;
border-radius: 10px;
}

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

.contact-card p {
font-size: 14px;
color: #7f8c8d;
line-height: 1.6;
}

.contact-note {
font-size: 13px;
margin-top: 8px;
}

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

.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 {
width: 100px;
height: 100px;
background: #27ae60;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
}

.thankyou-icon i {
font-size: 3rem;
color: #fff;
}

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

.thankyou-content p {
color: #7f8c8d;
margin-bottom: 30px;
line-height: 1.7;
}

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

.btn-primary {
background: var(--secondary);
color: #fff;
padding: 12px 30px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
display: inline-block;
}

.btn-primary:hover {
background: #d35400;
}

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
margin-bottom: 15px;
}

.error-content p {
color: #7f8c8d;
margin-bottom: 30px;
}

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

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

.policy-section h1 {
text-align: center;
margin-bottom: 10px;
}

.policy-date {
text-align: center;
color: #7f8c8d;
font-size: 14px;
margin-bottom: 40px;
}

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

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary);
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
}

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

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
z-index: 1000;
display: none;
}

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

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

.cookie-content p {
font-size: 14px;
margin: 0;
flex: 1;
}

.cookie-actions {
display: flex;
gap: 15px;
}

.btn-accept {
background: #27ae60;
color: #fff;
padding: 10px 25px;
border: none;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
font-family: 'Space Grotesk', sans-serif;
}

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

.btn-learn {
background: transparent;
color: #fff;
padding: 10px 25px;
border: 1px solid #fff;
border-radius: 6px;
font-size: 14px;
}

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

@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--primary);
flex-direction: column;
padding: 20px;
gap: 0;
transition: left 0.3s ease;
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
z-index: 99;
}

.nav-menu.active {
left: 0;
}

.nav-link {
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-toggle {
display: block;
}

.hero-mega {
height: 500px;
}

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

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

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }

.about-grid,
.workshop-content,
.location-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
}

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

.newsletter-form {
min-width: 100%;
}

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

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

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

.cookie-actions {
flex-direction: column;
width: 100%;
}

.btn-accept,
.btn-learn {
width: 100%;
}
}

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

.hero-mega {
height: 450px;
}

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

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

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

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

.category-grid,
.products-grid,
.workshops-grid {
grid-template-columns: 1fr;
}

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

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