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

:root {
--primary-color: #6366f1;
--secondary-color: #ec4899;
--accent-color: #8b5cf6;
--tertiary-color: #14b8a6;
--dark-color: #0f172a;
--light-color: #f8fafc;
--gray-color: #64748b;
--text-color: #1e293b;
--border-color: #e2e8f0;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
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;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-color);
color: white;
padding: 15px 20px;
z-index: 9999;
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 {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.privacy-actions a {
color: var(--primary-color);
font-size: 13px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary-color);
color: white;
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

.header-unique {
background: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 1.3rem;
font-weight: 800;
color: var(--primary-color);
}

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

.nav-menu a {
font-size: 14px;
font-weight: 500;
color: var(--text-color);
position: relative;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--text-color);
cursor: pointer;
}

.hero-vertical {
position: relative;
overflow: hidden;
}

.hero-visual-top {
position: relative;
height: 60vh;
min-height: 500px;
max-height: 700px;
overflow: hidden;
}

.hero-image-container {
position: relative;
width: 100%;
height: 100%;
}

.hero-image-container img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.hero-overlay-gradient {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 50%;
background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 100%);
}

.hero-floating-badge {
position: absolute;
top: 30px;
right: 30px;
background: white;
padding: 12px 24px;
border-radius: 50px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
font-size: 14px;
color: var(--dark-color);
animation: fadeSlideIn 1s ease-out;
}

@keyframes fadeSlideIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.badge-icon {
font-size: 1.2rem;
}

.hero-content-bottom {
background: white;
position: relative;
margin-top: -80px;
z-index: 10;
}

.hero-inner {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px 80px;
text-align: center;
}

.hero-subtitle {
display: inline-block;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
padding: 8px 24px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
letter-spacing: 0.5px;
}

.hero-inner h1 {
font-size: 3.8rem;
line-height: 1.15;
margin-bottom: 25px;
color: var(--dark-color);
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.hero-inner p {
font-size: 1.2rem;
line-height: 1.8;
color: var(--gray-color);
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-action-row {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 60px;
flex-wrap: wrap;
}

.btn-hero-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--primary-color);
color: white;
padding: 16px 36px;
border-radius: 12px;
font-weight: 700;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}

.btn-hero-primary:hover {
background: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(99,102,241,0.4);
}

.btn-hero-primary svg {
transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
transform: translateX(4px);
}

.btn-hero-secondary {
display: inline-flex;
align-items: center;
background: white;
color: var(--text-color);
padding: 16px 36px;
border-radius: 12px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--border-color);
transition: all 0.3s ease;
}

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

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

.stat-item-hero {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.stat-number-hero {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-color);
line-height: 1;
}

.stat-text-hero {
font-size: 14px;
color: var(--gray-color);
font-weight: 500;
}

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

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(99,102,241,0.3);
}

.btn-secondary {
background: white;
color: var(--text-color);
border: 2px solid var(--border-color);
}

.btn-secondary:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}

.featured-showcase {
padding: 80px 0;
background: white;
}

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

.section-header h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.section-header p {
font-size: 1.1rem;
color: var(--gray-color);
}

.showcase-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 25px;
}

.showcase-item {
position: relative;
border-radius: 16px;
overflow: hidden;
height: 500px;
}

.showcase-item.large {
grid-row: span 2;
height: auto;
}

.showcase-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.showcase-item:hover img {
transform: scale(1.05);
}

.showcase-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
padding: 30px;
color: white;
transform: translateY(60%);
transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
transform: translateY(0);
}

.showcase-category {
background: var(--primary-color);
padding: 5px 12px;
border-radius: 6px;
font-size: 12px;
font-weight: 600;
display: inline-block;
margin-bottom: 10px;
}

.showcase-overlay h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}

.showcase-overlay p {
font-size: 14px;
opacity: 0.9;
margin-bottom: 10px;
}

.showcase-author {
font-size: 13px;
opacity: 0.8;
}

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

.process-intro {
text-align: center;
margin-bottom: 50px;
}

.process-intro h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.process-intro p {
font-size: 1.1rem;
color: var(--gray-color);
}

.process-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.step-card {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
transition: transform 0.3s ease;
}

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

.step-number {
font-size: 3rem;
font-weight: 800;
color: var(--primary-color);
opacity: 0.2;
line-height: 1;
margin-bottom: 15px;
}

.step-card h3 {
font-size: 1.4rem;
margin-bottom: 12px;
}

.step-card p {
color: var(--gray-color);
line-height: 1.7;
}

.categories-modern {
padding: 80px 0;
background: white;
}

.categories-modern h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
}

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

.category-modern {
background: var(--light-color);
padding: 30px 20px;
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.category-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.category-modern h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

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

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

.testimonials-modern h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
}

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

.testimonial-modern {
background: rgba(255,255,255,0.05);
padding: 35px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
}

.quote-mark {
font-size: 4rem;
line-height: 1;
opacity: 0.3;
margin-bottom: 15px;
}

.testimonial-modern p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 25px;
opacity: 0.95;
}

.testimonial-profile strong {
display: block;
font-size: 1.1rem;
margin-bottom: 5px;
}

.testimonial-profile span {
display: block;
font-size: 14px;
opacity: 0.7;
margin-bottom: 3px;
}

.testimonial-profile .location {
font-size: 13px;
opacity: 0.6;
}

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

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

.section-label {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

.community-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
line-height: 1.2;
}

.community-content p {
font-size: 1.1rem;
color: var(--gray-color);
line-height: 1.7;
margin-bottom: 25px;
}

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

.benefits-list li {
padding: 12px 0;
font-size: 1.05rem;
position: relative;
padding-left: 30px;
}

.benefits-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--tertiary-color);
font-weight: bold;
font-size: 1.2rem;
}

.btn-community {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 14px 32px;
border-radius: 10px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-community:hover {
background: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(99,102,241,0.3);
}

.community-visual {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.stat-box {
background: white;
padding: 30px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
text-align: center;
}

.stat-box:first-child {
grid-column: span 2;
}

.stat-box h3 {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 10px;
}

.stat-box p {
color: var(--gray-color);
font-size: 14px;
}

.newsletter-section {
padding: 60px 0;
background: white;
}

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

.newsletter-content h2 {
font-size: 2.2rem;
margin-bottom: 15px;
}

.newsletter-content p {
font-size: 1.1rem;
opacity: 0.95;
margin-bottom: 30px;
}

.btn-newsletter {
display: inline-block;
background: white;
color: var(--primary-color);
padding: 14px 40px;
border-radius: 10px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-newsletter:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.benefit-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

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

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

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

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

.projects-list {
display: flex;
flex-direction: column;
gap: 60px;
}

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

.project-item.reverse {
direction: rtl;
}

.project-item.reverse > * {
direction: ltr;
}

.project-visual img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-details h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.project-details p {
color: var(--gray-color);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.project-meta {
display: flex;
gap: 20px;
font-size: 13px;
color: var(--gray-color);
}

.project-meta span {
display: flex;
align-items: center;
gap: 8px;
}

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

.products-section h2 {
text-align: center;
margin-bottom: 1rem;
}

.section-subtitle {
text-align: center;
color: var(--gray-color);
margin-bottom: 40px;
}

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

.product-card {
background: white;
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

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

.product-card.featured {
border: 2px solid var(--primary-color);
}

.product-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.product-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
}

.product-card p {
font-size: 14px;
color: var(--gray-color);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.btn-product {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 10px 25px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

.submissions-grid {
padding: 60px 0;
}

.masonry-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}

.submission-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.submission-image img {
width: 100%;
height: 220px;
object-fit: cover;
}

.submission-info {
padding: 20px;
}

.submission-info h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.submission-info p {
font-size: 13px;
color: var(--gray-color);
margin-bottom: 1rem;
}

.submission-footer {
display: flex;
justify-content: space-between;
font-size: 12px;
color: var(--gray-color);
}

.submission-footer span {
display: flex;
align-items: center;
gap: 5px;
}

.filter-section {
padding: 40px 0;
background: white;
}

.filter-section h2 {
text-align: center;
margin-bottom: 30px;
}

.filter-tags {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.filter-tag {
padding: 8px 20px;
border: 2px solid var(--border-color);
border-radius: 25px;
background: white;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.filter-tag:hover, .filter-tag.active {
border-color: var(--primary-color);
background: var(--primary-color);
color: white;
}

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

.community-section h2 {
text-align: center;
margin-bottom: 1rem;
}

.community-section > p {
text-align: center;
color: var(--gray-color);
margin-bottom: 40px;
}

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

.benefit-item {
text-align: center;
padding: 30px;
}

.benefit-item i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.benefit-item h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.benefit-item p {
font-size: 13px;
color: var(--gray-color);
}

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

.contact-hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.contact-hero p {
font-size: 1.1rem;
opacity: 0.95;
}

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

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

.contact-form-wrapper h2 {
margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
color: var(--gray-color);
cursor: pointer;
}

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

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

.btn-submit {
background: var(--primary-color);
color: white;
padding: 14px 30px;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
}

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

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

.contact-info-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
margin-bottom: 1.5rem;
}

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

.info-item:last-child {
margin-bottom: 0;
}

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

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

.info-item p {
font-size: 13px;
color: var(--gray-color);
line-height: 1.5;
}

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

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

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

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

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

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

.faq-item {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
font-size: 1rem;
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 10px;
}

.faq-item h3 i {
color: var(--primary-color);
}

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

.thankyou-main, .error-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

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

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

.thankyou-icon {
font-size: 5rem;
color: #10b981;
margin-bottom: 1.5rem;
}

.thankyou-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--dark-color);
}

.thankyou-message {
font-size: 1.1rem;
color: var(--gray-color);
margin-bottom: 2rem;
line-height: 1.7;
}

.thankyou-info {
background: var(--light-color);
padding: 15px;
border-radius: 8px;
margin-bottom: 2rem;
}

.thankyou-info p {
font-size: 14px;
color: var(--gray-color);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

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

.error-number {
font-size: 8rem;
font-weight: 800;
color: var(--primary-color);
line-height: 1;
margin-bottom: 1rem;
}

.error-content h1 {
font-size: 2rem;
margin-bottom: 1rem;
}

.error-message {
font-size: 1.1rem;
color: var(--gray-color);
margin-bottom: 2rem;
}

.error-suggestions {
background: var(--light-color);
padding: 30px;
border-radius: 12px;
margin-bottom: 2rem;
text-align: left;
}

.error-suggestions h2 {
font-size: 1.3rem;
margin-bottom: 1rem;
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}

.error-suggestions li i {
color: var(--primary-color);
}

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

.policy-hero {
background: var(--dark-color);
color: white;
padding: 50px 0;
text-align: center;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.policy-hero p {
font-size: 14px;
opacity: 0.8;
}

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

.policy-text {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.policy-text h2 {
font-size: 1.6rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--dark-color);
}

.policy-text h3 {
font-size: 1.2rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--text-color);
}

.policy-text p {
margin-bottom: 1rem;
line-height: 1.8;
color: var(--gray-color);
}

.policy-text ul, .policy-text ol {
margin-bottom: 1rem;
padding-left: 25px;
}

.policy-text li {
margin-bottom: 0.5rem;
line-height: 1.7;
color: var(--gray-color);
}

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

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.logo {
font-size: 1.1rem;
}

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

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

.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
transition: left 0.3s ease;
gap: 15px;
}

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

.menu-toggle {
display: block;
}

.hero-visual-top {
height: 50vh;
min-height: 400px;
}

.hero-floating-badge {
top: 20px;
right: 20px;
padding: 10px 20px;
font-size: 13px;
}

.hero-inner {
padding: 50px 20px 60px;
}

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

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

.hero-stats-grid {
gap: 40px;
}

.stat-number-hero {
font-size: 2rem;
}

.section-header h2, .process-intro h2, .categories-modern h2, .testimonials-modern h2, .community-content h2 {
font-size: 1.8rem;
}

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

.showcase-item {
height: 350px;
}

.showcase-item.large {
grid-row: span 1;
}

.process-steps {
grid-template-columns: 1fr;
}

.categories-flex {
grid-template-columns: repeat(2, 1fr);
}

.testimonials-slider {
grid-template-columns: 1fr;
}

.community-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.community-visual {
grid-template-columns: 1fr;
}

.stat-box:first-child {
grid-column: span 1;
}

.newsletter-box {
padding: 35px 25px;
}

.newsletter-content h2 {
font-size: 1.6rem;
}

.project-item {
grid-template-columns: 1fr;
gap: 25px;
}

.project-item.reverse {
direction: ltr;
}

.contact-layout {
grid-template-columns: 1fr;
gap: 30px;
}

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

.masonry-grid {
grid-template-columns: 1fr;
}

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

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

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

.error-number {
font-size: 5rem;
}

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

.thankyou-content h1, .error-content h1 {
font-size: 1.8rem;
}

.thankyou-message, .error-message {
font-size: 1rem;
}

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

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

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

.logo {
font-size: 0.8rem;
}

.page-hero h1 {
font-size: 1.5rem;
}

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

.hero-visual-top {
height: 40vh;
min-height: 350px;
}

.hero-floating-badge {
position: static;
margin: 20px auto 0;
width: fit-content;
}

.hero-inner {
padding: 40px 15px 50px;
}

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

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

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
justify-content: center;
}

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

.stat-number-hero {
font-size: 1.8rem;
}

.section-header h2 {
font-size: 1.5rem;
}

.categories-flex {
grid-template-columns: 1fr;
}

.step-card {
padding: 25px;
}

.newsletter-box {
padding: 30px 20px;
}

.btn-primary, .btn-secondary, .btn-newsletter, .btn-community {
padding: 12px 24px;
font-size: 14px;
}

.policy-text {
padding: 20px 15px;
}

.showcase-item {
height: 280px;
}

.showcase-overlay {
padding: 20px;
}

.showcase-overlay h3 {
font-size: 1.2rem;
}
}
