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

:root {
--primary: #1e3a8a;
--secondary: #3b82f6;
--accent: #f59e0b;
--dark: #1f2937;
--light: #f3f4f6;
--white: #fff;
--border: #e5e7eb;
--shadow: rgba(0,0,0,0.1);
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--dark);
font-size: 14px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px;
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: 15px;
flex-wrap: wrap;
}

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

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

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

.privacy-buttons button {
background: var(--accent);
color: var(--white);
border: none;
padding: 8px 20px;
cursor: pointer;
border-radius: 4px;
font-size: 13px;
}

.header {
background: var(--white);
box-shadow: 0 2px 8px var(--shadow);
position: relative;
z-index: 1000;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary);
}

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

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

.nav {
display: flex;
gap: 20px;
}

.nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
padding: 8px 12px;
transition: color 0.3s;
}

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

.hero-modern {
position: relative;
min-height: 500px;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 50%, transparent 50%, transparent 80%, rgba(255,255,255,0.05) 80%),
linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.03) 50%, transparent 50%, transparent 80%, rgba(255,255,255,0.03) 80%);
background-size: 100px 100px;
opacity: 0.3;
}

.hero-content {
position: relative;
z-index: 1;
padding: 60px 0;
color: var(--white);
max-width: 100%;
}

.hero-text h1 {
font-size: 42px;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}

.hero-text p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
max-width: 100%;
}

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

.btn {
display: inline-block;
padding: 12px 30px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

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

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

.btn-large {
padding: 15px 40px;
font-size: 16px;
}

.btn-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 13px;
}

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

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 50px;
}

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

.stat-number {
font-size: 36px;
font-weight: 800;
margin-bottom: 5px;
}

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

section {
padding: 60px 0;
}

h2 {
font-size: 32px;
margin-bottom: 15px;
color: var(--dark);
text-align: center;
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--dark);
font-weight: 600;
}

.section-subtitle {
text-align: center;
font-size: 16px;
color: #6b7280;
margin-bottom: 40px;
}

.services {
background: var(--light);
}

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

.service-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px var(--shadow);
}

.service-icon {
font-size: 40px;
margin-bottom: 15px;
}

.service-card h3 {
margin-bottom: 12px;
}

.service-card p {
font-size: 14px;
margin-bottom: 15px;
line-height: 1.6;
color: #4b5563;
}

.showcase {
background: var(--white);
}

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

.showcase-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 24px var(--shadow);
}

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

.showcase-text p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 15px;
color: #4b5563;
}

.showcase-features {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 25px;
}

.feature-badge {
background: var(--light);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
color: var(--primary);
}

.products {
background: var(--light);
}

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

.product-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
transition: transform 0.3s;
position: relative;
}

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

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

.product-badge {
position: static;
display: inline-block;
margin-bottom: 10px;
background: var(--accent);
color: var(--white);
padding: 5px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.product-card h3 {
margin-bottom: 12px;
}

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

.price {
font-size: 36px;
font-weight: 800;
color: var(--primary);
margin: 20px 0;
}

.product-features {
list-style: none;
margin: 20px 0;
}

.product-features li {
font-size: 13px;
padding: 8px 0;
border-bottom: 1px solid var(--border);
color: #4b5563;
}

.product-features li:before {
content: "✓ ";
color: var(--accent);
font-weight: 700;
margin-right: 8px;
}

.process {
background: var(--white);
}

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

.process-step {
text-align: center;
padding: 25px;
}

.step-number {
font-size: 48px;
font-weight: 800;
color: var(--accent);
margin-bottom: 15px;
opacity: 0.3;
}

.process-step h3 {
margin-bottom: 10px;
}

.process-step p {
font-size: 14px;
color: #4b5563;
line-height: 1.6;
}

.why-choose {
background: var(--light);
}

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

.reason-card {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
}

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

.reason-card p {
font-size: 14px;
line-height: 1.6;
color: #4b5563;
}

.industries {
background: var(--white);
}

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

.industry-item {
padding: 20px;
border-left: 3px solid var(--accent);
background: var(--light);
border-radius: 8px;
}

.industry-item h3 {
margin-bottom: 8px;
}

.industry-item p {
font-size: 13px;
color: #4b5563;
line-height: 1.6;
}

.testimonials {
background: var(--light);
}

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

.testimonial {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
border-top: 4px solid var(--accent);
}

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

.testimonial-author {
font-weight: 600;
font-size: 13px;
color: var(--primary);
}

.materials-info {
background: var(--white);
}

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

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

.materials-text p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 15px;
color: #4b5563;
}

.materials-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 24px var(--shadow);
}

.local-service {
background: var(--light);
text-align: center;
}

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

.local-content p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
color: #4b5563;
}

.service-area {
background: var(--white);
padding: 20px;
border-radius: 8px;
margin-top: 30px;
font-size: 14px;
color: #4b5563;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-align: center;
}

.cta-content h2 {
color: var(--white);
margin-bottom: 15px;
}

.cta-content p {
font-size: 16px;
margin-bottom: 30px;
}

.cta-note {
font-size: 13px;
margin-top: 15px;
opacity: 0.9;
}

.content-section {
background: var(--white);
}

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

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

.content-text p {
margin-bottom: 15px;
font-size: 15px;
line-height: 1.7;
color: #4b5563;
}

.content-stats {
display: flex;
gap: 30px;
margin-top: 30px;
}

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

.stat-value {
font-size: 28px;
font-weight: 800;
color: var(--primary);
margin-bottom: 5px;
}

.stat-desc {
font-size: 12px;
color: #6b7280;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 24px var(--shadow);
}

.offerings {
background: var(--light);
}

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

.offering-item {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
transition: transform 0.3s;
}

.offering-item:hover {
transform: translateY(-3px);
}

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

.offering-item p {
font-size: 14px;
line-height: 1.6;
color: #4b5563;
}

.benefits {
background: var(--white);
}

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

.benefit-item {
padding: 25px;
}

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

.benefit-item p {
font-size: 14px;
line-height: 1.7;
color: #4b5563;
}

.customization {
background: var(--light);
}

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

.option-category {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
}

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

.option-category p {
font-size: 13px;
line-height: 1.6;
color: #4b5563;
}

.materials-showcase {
background: var(--light);
}

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

.material-card {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
}

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

.material-card p {
font-size: 13px;
line-height: 1.6;
color: #4b5563;
}

.applications {
background: var(--white);
}

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

.app-item {
padding: 20px;
border-left: 3px solid var(--secondary);
background: var(--light);
border-radius: 8px;
}

.app-item h3 {
margin-bottom: 8px;
}

.app-item p {
font-size: 13px;
color: #4b5563;
line-height: 1.6;
}

.contact-section {
background: var(--white);
}

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

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

.contact-info p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
color: #4b5563;
}

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

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

.contact-item p {
font-size: 14px;
margin: 3px 0;
color: #4b5563;
}

.contact-note {
font-size: 12px;
color: #6b7280;
font-style: italic;
}

.contact-form-wrapper h2 {
text-align: left;
margin-bottom: 15px;
}

.form-intro {
font-size: 14px;
color: #6b7280;
margin-bottom: 25px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

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

.checkbox-group label {
flex-direction: row;
align-items: flex-start;
gap: 10px;
font-weight: 400;
}

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

.map-section {
background: var(--light);
}

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

.contact-benefits {
background: var(--white);
}

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

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

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

.benefit-box p {
font-size: 13px;
line-height: 1.6;
color: #4b5563;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 50px 0 20px;
}

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

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

.footer-col p {
font-size: 13px;
margin: 5px 0;
line-height: 1.6;
opacity: 0.9;
}

.footer-col a {
display: block;
color: var(--white);
text-decoration: none;
font-size: 13px;
margin: 8px 0;
opacity: 0.9;
}

.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;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
}

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

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 12px;
opacity: 0.9;
}

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

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

.policy-page h1 {
font-size: 32px;
margin-bottom: 10px;
color: var(--dark);
}

.policy-date {
font-size: 13px;
color: #6b7280;
margin-bottom: 30px;
}

.policy-section {
margin-bottom: 35px;
}

.policy-section h2 {
font-size: 22px;
margin-bottom: 15px;
text-align: left;
}

.policy-section h3 {
font-size: 16px;
margin: 20px 0 10px;
}

.policy-section p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 12px;
color: #4b5563;
}

.policy-section ul {
margin-left: 25px;
margin-bottom: 15px;
}

.policy-section li {
font-size: 14px;
line-height: 1.7;
margin-bottom: 8px;
color: #4b5563;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
text-align: center;
padding: 20px;
}

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 96px;
margin-bottom: 10px;
font-weight: 800;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 30px;
line-height: 1.6;
opacity: 0.95;
}

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

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 15px;
box-shadow: 0 4px 8px var(--shadow);
display: none;
}

.nav.active {
display: flex;
}

.hero-modern {
min-height: 400px;
}

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

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

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}

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

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

h2 {
font-size: 26px;
}

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

.showcase-text h2,
.content-text h2,
.contact-info h2,
.contact-form-wrapper h2,
.materials-text h2 {
text-align: center;
}

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

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

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

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

.container {
max-width: 100%;
padding: 0 15px;
}

.hero-modern {
min-height: auto;
}

.hero-content {
padding: 40px 0;
width: 100%;
max-width: 100%;
}

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

.hero-text h1 {
font-size: 26px;
margin-left: 0;
margin-right: 0;
}

.hero-text p {
font-size: 14px;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}

.hero-buttons {
flex-direction: column;
justify-content: center;
align-items: center;
margin-left: 0;
margin-right: 0;
}

.hero-buttons .btn {
width: 100%;
max-width: 280px;
text-align: center;
display: inline-block;
margin-top: 10px;
}

.hero-stats {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 30px;
text-align: center;
}

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

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

section {
padding: 40px 0;
}

h2 {
font-size: 22px;
margin-bottom: 20px;
text-align: center;
}

h3 {
font-size: 16px;
}

.btn {
padding: 10px 24px;
font-size: 13px;
display: inline-block;
}

.btn-large {
padding: 12px 30px;
font-size: 14px;
}

.services-grid,
.products-grid,
.offerings-grid,
.process-timeline,
.reasons-grid,
.industries-grid,
.testimonials-grid,
.benefits-list,
.custom-options,
.materials-grid,
.applications-list,
.benefits-grid {
display: flex;
flex-direction: column;
gap: 20px;
}

.showcase-content,
.content-layout,
.contact-grid,
.materials-content {
display: flex;
flex-direction: column;
gap: 30px;
}

.showcase-image img,
.materials-image img,
.content-image img {
max-width: 100%;
height: auto;
width: 100%;
}

.showcase-text,
.materials-text,
.content-text {
text-align: center;
}

.showcase-text h2,
.materials-text h2,
.content-text h2 {
text-align: center;
}

.showcase-features,
.content-stats {
justify-content: center;
margin-left: 0;
margin-right: 0;
}

.price {
font-size: 32px;
}

.logo {
font-size: 16px;
}

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

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

.thankyou-content h1,
.error-content h2 {
font-size: 28px;
}

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

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

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

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

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

.service-card,
.product-card,
.offering-item,
.reason-card,
.testimonial,
.material-card,
.option-category,
.benefit-box {
width: 100%;
max-width: 100%;
}

.product-card {
position: relative;
}

.product-badge {
position: static;
margin-bottom: 15px;
}
}

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

.hero-modern {
min-height: auto;
width: 100%;
}

.hero-content {
padding: 30px 0;
width: 100%;
max-width: 100%;
}

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

.hero-text h1 {
font-size: 22px;
margin-left: 0;
margin-right: 0;
text-align: center;
}

.hero-text p {
font-size: 13px;
max-width: 100%;
margin-left: 0;
margin-right: 0;
text-align: center;
}

.hero-buttons {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-left: 0;
margin-right: 0;
width: 100%;
}

.hero-buttons .btn {
width: 100%;
max-width: 100%;
text-align: center;
display: inline-block;
margin-top: 5px;
margin-left: 0;
margin-right: 0;
}

.hero-stats {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 25px;
text-align: center;
width: 100%;
}

.stat-item {
text-align: center;
width: 100%;
}

.service-card,
.product-card,
.offering-item,
.reason-card,
.testimonial,
.material-card,
.option-category,
.benefit-box {
padding: 20px;
width: 100%;
max-width: 100%;
margin-left: 0;
margin-right: 0;
}

.btn {
padding: 9px 20px;
font-size: 12px;
display: inline-block;
width: 100%;
max-width: 100%;
text-align: center;
}

.btn-link {
display: inline-block;
margin-top: 10px;
text-align: center;
}

.services-grid,
.products-grid,
.offerings-grid,
.process-timeline,
.reasons-grid,
.industries-grid,
.testimonials-grid,
.benefits-list,
.custom-options,
.materials-grid,
.applications-list,
.benefits-grid {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
}

.showcase-content,
.content-layout,
.contact-grid,
.materials-content {
display: flex;
flex-direction: column;
gap: 25px;
width: 100%;
}

.showcase-image,
.materials-image,
.content-image {
width: 100%;
max-width: 100%;
}

.showcase-image img,
.materials-image img,
.content-image img {
max-width: 100%;
height: auto;
width: 100%;
display: block;
}

.showcase-text,
.materials-text,
.content-text,
.contact-info,
.contact-form-wrapper {
text-align: center;
width: 100%;
}

.showcase-text h2,
.materials-text h2,
.content-text h2,
.contact-info h2,
.contact-form-wrapper h2 {
text-align: center;
margin-left: 0;
margin-right: 0;
}

.showcase-text p,
.materials-text p,
.content-text p {
text-align: center;
margin-left: 0;
margin-right: 0;
}

.showcase-features,
.content-stats {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-left: 0;
margin-right: 0;
}

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

.privacy-buttons {
justify-content: center;
flex-wrap: wrap;
}

.footer-content {
display: flex;
flex-direction: column;
gap: 25px;
}

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

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

.product-card {
position: relative;
}

.product-badge {
position: static;
display: inline-block;
margin-bottom: 15px;
}

.contact-form {
width: 100%;
}

.form-group input,
.form-group textarea {
width: 100%;
max-width: 100%;
}
}
