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

:root {
--primary: #0ea5e9;
--secondary: #6366f1;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f8fafc;
--gray: #64748b;
--white: #ffffff;
}

body {
font-family: 'Space Grotesk', sans-serif;
color: var(--dark);
line-height: 1.6;
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s 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: 20px;
flex-wrap: wrap;
}

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

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

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

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

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

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

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

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 100;
transition: transform 0.3s ease;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 20px;
font-weight: 800;
color: var(--primary);
text-decoration: none;
transition: color 0.3s ease;
}

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

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

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

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

.nav-link {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: var(--primary);
}

.mega-hero {
position: relative;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 100px 0 80px;
overflow: hidden;
}

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

.shape {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
width: 400px;
height: 400px;
top: -200px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -150px;
left: -100px;
}

.shape-3 {
width: 200px;
height: 200px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.mega-hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--white);
max-width: 900px;
margin: 0 auto;
}

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

.mega-hero-content h1 {
font-size: 52px;
margin-bottom: 20px;
line-height: 1.1;
}

.mega-hero-content > p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

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

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

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

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

.btn-hero-secondary {
background: rgba(255, 255, 255, 0.2);
color: var(--white);
border: 2px solid var(--white);
backdrop-filter: blur(10px);
}

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

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

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-number {
font-size: 36px;
font-weight: 800;
font-family: 'Syne', sans-serif;
}

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

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

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

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

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

.showcase-image-wrapper img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: var(--white);
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
color: var(--dark);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.showcase-content > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.feature-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.feature-item {
display: flex;
gap: 20px;
align-items: start;
}

.feature-number {
font-size: 24px;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
min-width: 40px;
}

.feature-text h3 {
font-size: 18px;
margin-bottom: 5px;
}

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

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

.section-header-center {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-header-center h2 {
font-size: 36px;
margin-bottom: 15px;
}

.section-header-center p {
font-size: 16px;
color: var(--gray);
}

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

.product-highlight {
background: var(--white);
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-visual {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 40px;
text-align: center;
position: relative;
}

.product-tag {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: var(--white);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-icon-display {
color: var(--white);
}

.product-info {
padding: 25px;
}

.product-info h3 {
font-size: 20px;
margin-bottom: 12px;
}

.product-info p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 20px;
}

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

.price-tag {
font-size: 28px;
font-weight: 800;
color: var(--accent);
font-family: 'Syne', sans-serif;
}

.btn-product {
padding: 10px 20px;
background: var(--primary);
color: var(--white);
text-decoration: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-product:hover {
background: var(--secondary);
}

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

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

.workshop-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.workshop-content > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.workshop-highlights {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.highlight-box {
background: var(--light);
padding: 20px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.highlight-box h4 {
font-size: 16px;
margin-bottom: 8px;
}

.highlight-box p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

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

.workshop-image-wrapper img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

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

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

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

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

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

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

.expertise-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease;
}

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

.expertise-icon {
color: var(--primary);
margin-bottom: 20px;
}

.expertise-card h3 {
font-size: 18px;
margin-bottom: 12px;
}

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

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

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

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

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

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
font-size: 15px;
color: var(--dark);
}

.testimonial-author span {
font-size: 13px;
color: var(--gray);
}

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

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

.location-info h2 {
font-size: 36px;
margin-bottom: 20px;
}

.location-info > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.location-details {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

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

.detail-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.location-image {
position: relative;
}

.location-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.newsletter-content {
color: var(--white);
flex: 1;
min-width: 300px;
}

.newsletter-content h2 {
font-size: 28px;
margin-bottom: 10px;
}

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

.btn-newsletter {
padding: 14px 32px;
background: var(--accent);
color: var(--white);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-newsletter:hover {
background: #d97706;
transform: translateY(-2px);
}

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

.page-hero h1 {
font-size: 42px;
margin-bottom: 12px;
}

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

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

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

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 13px;
transition: color 0.3s ease;
}

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

@media (max-width: 968px) {
.showcase-grid,
.workshop-layout,
.location-content {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

.nav {
position: fixed;
top: 0;
right: -100%;
width: 250px;
height: 100vh;
background: var(--white);
flex-direction: column;
padding: 80px 30px 30px;
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
transition: right 0.3s ease;
z-index: 1000;
align-items: flex-start;
}

.nav.active {
right: 0;
}

.mega-hero {
padding: 60px 0 50px;
}

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

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

.hero-stats {
gap: 30px;
}

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

.showcase-content h2,
.workshop-content h2,
.location-info h2,
.section-header-center h2 {
font-size: 28px;
}

.products-showcase {
grid-template-columns: 1fr;
}

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

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

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

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

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

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

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

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

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

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

.hero-stats {
gap: 20px;
}

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

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

.innovation-showcase,
.products-highlight,
.workshop-preview,
.expertise-section,
.testimonial-section,
.location-section,
.newsletter-section {
padding: 50px 0;
}

.showcase-content h2,
.workshop-content h2,
.location-info h2,
.section-header-center h2 {
font-size: 24px;
}

.newsletter-box {
padding: 25px;
}

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

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

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

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

.btn-hero-primary,
.btn-hero-secondary,
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 14px;
}

.showcase-content h2,
.workshop-content h2,
.section-header-center h2 {
font-size: 22px;
}
}

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

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

.products-intro h2 {
font-size: 36px;
margin-bottom: 20px;
}

.products-intro p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
}

.product-detailed-list {
display: flex;
flex-direction: column;
gap: 50px;
}

.product-detailed-card {
display: grid;
grid-template-columns: 300px 1fr;
gap: 40px;
background: var(--light);
border-radius: 16px;
padding: 40px;
}

.product-detailed-visual {
position: relative;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 12px;
padding: 40px;
display: flex;
align-items: center;
justify-content: center;
min-height: 300px;
}

.product-badge-top {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: var(--white);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-icon-large {
color: var(--white);
}

.product-detailed-content h3 {
font-size: 28px;
margin-bottom: 15px;
}

.product-detailed-content > p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
}

.product-features {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}

.feature-tag {
background: var(--white);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
color: var(--dark);
}

.product-recommendation {
background: var(--white);
padding: 15px;
border-radius: 8px;
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 25px;
border-left: 3px solid var(--primary);
}

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

.product-price {
font-size: 36px;
font-weight: 800;
color: var(--accent);
font-family: 'Syne', sans-serif;
}

.why-choose {
padding: 80px 0;
background: var(--light);
}

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

.benefit-box {
background: var(--white);
padding: 30px;
border-radius: 12px;
text-align: center;
}

.benefit-icon {
color: var(--primary);
margin-bottom: 20px;
}

.benefit-box h3 {
font-size: 18px;
margin-bottom: 12px;
}

.benefit-box p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

@media (max-width: 968px) {
.product-detailed-card {
grid-template-columns: 1fr;
}

.product-detailed-visual {
min-height: 250px;
}
}

@media (max-width: 480px) {
.products-detail {
padding: 50px 0;
}

.product-detailed-card {
padding: 25px;
}

.product-detailed-visual {
padding: 30px;
min-height: 200px;
}

.product-icon-large svg {
width: 80px;
height: 80px;
}

.product-detailed-content h3 {
font-size: 22px;
}

.product-action-row {
flex-direction: column;
gap: 20px;
align-items: stretch;
}

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

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

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

.workshop-intro-image {
position: relative;
}

.workshop-intro-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.workshop-intro-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.workshop-intro-content p {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 15px;
}

.workshops-listing {
padding: 80px 0;
background: var(--light);
}

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

.workshop-detail-card {
background: var(--white);
border-radius: 16px;
padding: 30px;
display: flex;
flex-direction: column;
}

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

.workshop-icon-box {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
}

.level-badge {
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
color: var(--white);
}

.level-badge.beginner {
background: var(--primary);
}

.level-badge.intermediate {
background: var(--accent);
}

.level-badge.advanced {
background: var(--secondary);
}

.workshop-detail-card h3 {
font-size: 22px;
margin-bottom: 15px;
}

.workshop-detail-card > p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 25px;
flex-grow: 1;
}

.workshop-details-list {
background: var(--light);
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}

.detail-row {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
border-bottom: none;
}

.detail-label {
font-size: 13px;
color: var(--gray);
font-weight: 500;
}

.detail-value {
font-size: 13px;
color: var(--dark);
font-weight: 600;
}

.workshop-benefits-section {
padding: 80px 0;
}

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

.benefit-feature {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.benefit-number {
font-size: 48px;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 15px;
opacity: 0.3;
}

.benefit-feature h3 {
font-size: 18px;
margin-bottom: 10px;
}

.benefit-feature p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

@media (max-width: 968px) {
.workshop-intro-grid {
grid-template-columns: 1fr;
}

.workshop-intro-image {
order: -1;
}
}

@media (max-width: 768px) {
.workshop-cards-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.workshops-intro-section,
.workshops-listing,
.workshop-benefits-section {
padding: 50px 0;
}

.workshop-intro-content h2 {
font-size: 28px;
}

.workshop-detail-card {
padding: 25px;
}
}

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

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

.contact-hero-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.contact-hero-content > p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 30px;
}

.contact-team h3 {
font-size: 18px;
margin-bottom: 15px;
}

.team-members {
display: flex;
flex-direction: column;
gap: 12px;
}

.team-member {
background: var(--light);
padding: 15px;
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 4px;
}

.team-member strong {
font-size: 15px;
color: var(--dark);
}

.team-member span {
font-size: 13px;
color: var(--gray);
}

.contact-hero-image {
position: relative;
}

.contact-hero-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.contact-main-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-information h2 {
font-size: 28px;
margin-bottom: 15px;
}

.contact-information > p {
font-size: 15px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

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

.info-block {
display: flex;
gap: 20px;
align-items: start;
}

.info-icon {
width: 50px;
height: 50px;
background: var(--white);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
flex-shrink: 0;
}

.info-text h3 {
font-size: 16px;
margin-bottom: 6px;
}

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

.contact-form-section {
background: var(--white);
padding: 40px;
border-radius: 16px;
}

.contact-form-section h2 {
font-size: 28px;
margin-bottom: 10px;
}

.contact-form-section > p {
font-size: 14px;
color: var(--gray);
margin-bottom: 30px;
}

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

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

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

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

.form-field input,
.form-field textarea {
padding: 12px;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-size: 14px;
font-family: 'Space Grotesk', sans-serif;
transition: border-color 0.3s ease;
}

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

.form-field textarea {
resize: vertical;
}

.form-checkbox {
margin: 10px 0;
}

.checkbox-container {
display: flex;
align-items: start;
gap: 12px;
cursor: pointer;
position: relative;
}

.checkbox-container input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
}

.checkmark {
width: 20px;
height: 20px;
border: 2px solid #e2e8f0;
border-radius: 4px;
flex-shrink: 0;
transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
background: var(--primary);
border-color: var(--primary);
}

.checkbox-text {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

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

.btn-full {
width: 100%;
}

.map-section-modern {
padding: 80px 0;
}

.map-container {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.thankyou-icon {
font-size: 80px;
color: var(--primary);
margin-bottom: 20px;
}

.thankyou-content h1 {
font-size: 32px;
margin-bottom: 15px;
}

.thankyou-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

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

.error-code {
font-size: 120px;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
font-family: 'Syne', sans-serif;
}

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

.error-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

.policy-section h1 {
font-size: 36px;
margin-bottom: 10px;
}

.policy-date {
font-size: 14px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

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

.policy-content strong {
color: var(--dark);
font-weight: 600;
}

@media (max-width: 968px) {
.contact-hero-grid,
.contact-main-grid {
grid-template-columns: 1fr;
}

.contact-hero-image {
order: -1;
}

.form-row {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.contact-hero-section,
.contact-main-section,
.map-section-modern {
padding: 50px 0;
}

.contact-form-section {
padding: 25px;
}

.contact-hero-content h2,
.contact-information h2,
.contact-form-section h2 {
font-size: 24px;
}

.thankyou-icon {
font-size: 60px;
}

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