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

:root {
--primary-color: #1a4d2e;
--secondary-color: #4f9d69;
--accent-color: #d4a574;
--tertiary-color: #f5e6d3;
--dark-color: #1a1a1a;
--light-color: #faf8f5;
--text-color: #2d2d2d;
--border-color: #e5dfd6;
--shadow: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.header {
background: var(--primary-color);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 20px;
font-weight: 700;
color: white;
letter-spacing: -0.5px;
}

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

.nav-toggle span {
width: 25px;
height: 3px;
background: white;
display: block;
transition: 0.3s;
border-radius: 2px;
}

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

.nav-menu a {
color: white;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
font-weight: 500;
}

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

.hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: var(--primary-color);
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../outdoor_spaces/balcony-hero.jpg') center/cover;
opacity: 0.2;
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26,77,46,0.95) 0%, rgba(79,157,105,0.85) 100%);
z-index: 0;
}

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

.hero-content {
max-width: 750px;
margin: 0 auto;
text-align: center;
color: white;
padding: 40px 0;
}

.hero h1 {
font-size: 48px;
margin-bottom: 25px;
font-weight: 800;
line-height: 1.15;
letter-spacing: -1px;
text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
font-size: 20px;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
font-weight: 300;
}

.hero-features {
display: flex;
gap: 40px;
justify-content: center;
margin-top: 50px;
flex-wrap: wrap;
}

.hero-feature {
text-align: center;
color: white;
flex: 0 0 auto;
}

.hero-feature-icon {
font-size: 36px;
margin-bottom: 10px;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-feature span {
font-size: 14px;
display: block;
opacity: 0.95;
font-weight: 500;
letter-spacing: 0.5px;
}

.btn {
display: inline-block;
background: var(--accent-color);
color: white;
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-size: 15px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-weight: 600;
box-shadow: 0 4px 12px rgba(212,165,116,0.3);
}

.btn:hover {
background: #e76f51;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(212,165,116,0.4);
}

.btn-secondary {
background: var(--secondary-color);
color: white;
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-size: 14px;
display: inline-block;
transition: all 0.3s ease;
font-weight: 600;
}

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

section {
padding: 60px 0;
}

h2 {
font-size: 32px;
margin-bottom: 24px;
color: var(--primary-color);
font-weight: 700;
}

h3 {
font-size: 20px;
margin-bottom: 14px;
color: var(--primary-color);
font-weight: 600;
}

h4 {
font-size: 17px;
margin-bottom: 12px;
font-weight: 600;
}

p {
margin-bottom: 16px;
line-height: 1.7;
}

.features {
background: var(--light-color);
}

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

.feature-card {
background: white;
padding: 28px;
border-radius: 8px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

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

.about {
background: white;
}

.process {
background: var(--light-color);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
}

.step {
text-align: center;
}

.step-number {
width: 60px;
height: 60px;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 18px;
box-shadow: 0 4px 12px rgba(26,77,46,0.2);
}

.products {
background: white;
}

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

.product-card {
background: var(--light-color);
padding: 32px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.product-card:hover {
border-color: var(--secondary-color);
transform: translateY(-4px);
}

.price {
font-size: 28px;
font-weight: 700;
color: var(--accent-color);
margin: 18px 0;
}

.benefits {
background: var(--light-color);
}

.benefits-list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
}

.benefits-list li {
padding-left: 32px;
position: relative;
line-height: 1.6;
}

.benefits-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
font-size: 18px;
}

.testimonials {
background: white;
}

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

.testimonial {
background: var(--light-color);
padding: 28px;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
transition: all 0.3s ease;
}

.testimonial:hover {
box-shadow: var(--shadow);
}

.author {
margin-top: 16px;
font-weight: 600;
color: var(--primary-color);
}

.cta {
background: var(--primary-color);
color: white;
text-align: center;
}

.cta h2 {
color: white;
}

.location {
background: var(--light-color);
}

.map-container {
margin-top: 24px;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

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

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

.footer-section h4 {
color: var(--accent-color);
margin-bottom: 16px;
font-size: 18px;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 10px;
}

.footer-section a {
color: #ccc;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

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

.footer-bottom {
text-align: center;
padding-top: 24px;
border-top: 1px solid #444;
font-size: 13px;
color: #999;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
color: white;
padding: 24px;
z-index: 1000;
display: none;
box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

.privacy-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.privacy-content h3 {
color: white;
margin-bottom: 12px;
font-size: 20px;
}

.privacy-content button {
margin-top: 18px;
}

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

.page-hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
}

.page-hero h1 {
font-size: 42px;
margin-bottom: 16px;
font-weight: 700;
position: relative;
z-index: 1;
}

.materials-intro, .balcony-intro, .rooftop-intro, .contact-intro, .materials-list, .balcony-solutions, .rooftop-features, .quality-assurance, .sustainability, .installation-process {
background: white;
}

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

.material-card, .solution-card {
background: var(--light-color);
padding: 28px;
border-radius: 8px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.material-card:hover, .solution-card:hover {
border-color: var(--secondary-color);
box-shadow: var(--shadow);
}

.material-card ul, .solution-card ul {
list-style: none;
margin-top: 16px;
}

.material-card li, .solution-card li {
padding-left: 24px;
position: relative;
margin-bottom: 8px;
line-height: 1.6;
}

.material-card li:before, .solution-card li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
font-size: 16px;
}

.contact-content {
background: white;
}

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

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

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

.form-group label {
margin-bottom: 8px;
font-weight: 600;
font-size: 14px;
color: var(--primary-color);
}

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

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

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

.checkbox-label {
display: flex;
gap: 10px;
font-weight: 400;
cursor: pointer;
align-items: flex-start;
}

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

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

.info-item h3 {
font-size: 18px;
margin-bottom: 10px;
}

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

.thankyou-section, .error-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--light-color);
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
padding: 60px 24px;
}

.thankyou-content h1, .error-content h2 {
color: var(--primary-color);
margin-bottom: 24px;
font-size: 36px;
}

.error-code {
font-size: 100px;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 24px;
line-height: 1;
}

.showcase {
background: white;
}

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

.showcase-item {
background: var(--light-color);
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: var(--shadow);
}

.showcase-item:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}

.showcase-item img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
}

.showcase-item h3 {
padding: 24px 24px 12px;
margin: 0;
}

.showcase-item p {
padding: 0 24px 24px;
margin: 0;
}

.guarantee {
background: var(--tertiary-color);
}

.guarantee-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 28px;
margin-top: 28px;
}

.guarantee-item {
background: white;
padding: 32px;
border-radius: 10px;
border-top: 4px solid var(--secondary-color);
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.guarantee-item:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

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

.faq {
background: white;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 24px;
margin-top: 28px;
}

.faq-item {
background: var(--light-color);
padding: 28px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
transition: all 0.3s ease;
}

.faq-item:hover {
box-shadow: var(--shadow);
}

.faq-item h3 {
font-size: 18px;
color: var(--primary-color);
margin-bottom: 12px;
}

.faq-item p {
margin: 0;
line-height: 1.7;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 16px;
justify-content: center;
margin-top: 32px;
flex-wrap: wrap;
}

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

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

.policy-content h1 {
font-size: 42px;
color: var(--primary-color);
margin-bottom: 12px;
font-weight: 700;
line-height: 1.2;
}

.update-date {
font-size: 13px;
color: #666;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid var(--border-color);
display: inline-block;
}

.policy-content h2 {
font-size: 28px;
margin-top: 48px;
margin-bottom: 20px;
color: var(--primary-color);
font-weight: 700;
padding-top: 24px;
border-top: 1px solid var(--border-color);
}

.policy-content h2:first-of-type {
border-top: none;
padding-top: 0;
}

.policy-content h3 {
font-size: 22px;
margin-top: 32px;
margin-bottom: 16px;
color: var(--secondary-color);
font-weight: 600;
}

.policy-content h4 {
font-size: 18px;
margin-top: 24px;
margin-bottom: 14px;
color: var(--text-color);
font-weight: 600;
}

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

.policy-content ul, .policy-content ol {
margin-left: 32px;
margin-bottom: 20px;
line-height: 1.8;
}

.policy-content li {
margin-bottom: 12px;
padding-left: 8px;
}

.policy-content ul li {
list-style-type: disc;
}

.policy-content ol {
counter-reset: item;
}

.policy-content ol li {
list-style-type: decimal;
}

.policy-content a {
color: var(--secondary-color);
text-decoration: underline;
transition: color 0.3s ease;
}

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

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

.policy-content table {
width: 100%;
border-collapse: collapse;
margin: 28px 0;
background: white;
box-shadow: var(--shadow);
border-radius: 8px;
overflow: hidden;
}

.policy-content th, .policy-content td {
border: 1px solid var(--border-color);
padding: 16px;
text-align: left;
}

.policy-content th {
background: var(--primary-color);
color: white;
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.policy-content td {
background: white;
}

.policy-content tr:nth-child(even) td {
background: var(--light-color);
}

.cookie-table {
font-size: 14px;
}

.form-template {
background: var(--tertiary-color);
padding: 28px;
border-radius: 8px;
margin: 28px 0;
border-left: 4px solid var(--primary-color);
box-shadow: var(--shadow);
}

.form-template h3 {
color: var(--primary-color);
margin-top: 0;
}

.policy-content > .container > p:first-of-type {
font-size: 17px;
line-height: 1.8;
color: var(--text-color);
margin-bottom: 24px;
}

.policy-highlight {
background: var(--tertiary-color);
padding: 24px;
border-radius: 8px;
margin: 24px 0;
border-left: 4px solid var(--accent-color);
}

.policy-highlight p:last-child {
margin-bottom: 0;
}

.policy-note {
background: #e8f5e9;
padding: 20px;
border-radius: 6px;
margin: 20px 0;
border-left: 4px solid var(--secondary-color);
font-size: 14px;
}

.policy-warning {
background: #fff3e0;
padding: 20px;
border-radius: 6px;
margin: 20px 0;
border-left: 4px solid #ff9800;
font-size: 14px;
}

@media (max-width: 768px) {
.nav-toggle {
display: flex;
}
.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
padding: 20px;
gap: 12px;
display: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.nav-menu.active {
display: flex;
}
.hero {
min-height: 75vh;
}
.hero h1 {
font-size: 38px;
}
.hero p {
font-size: 18px;
}
.hero-features {
gap: 28px;
}
.hero-feature-icon {
font-size: 32px;
}
section {
padding: 50px 0;
}
h2 {
font-size: 28px;
}
h3 {
font-size: 18px;
}
.page-hero {
padding: 60px 0;
}
.page-hero h1 {
font-size: 36px;
}
.features-grid, .products-grid, .testimonials-grid, .showcase-grid, .guarantee-grid, .faq-grid, .materials-grid, .solutions-grid {
grid-template-columns: 1fr;
}
.process-steps {
grid-template-columns: repeat(2, 1fr);
}
.contact-grid {
grid-template-columns: 1fr;
}
.thankyou-actions, .error-actions {
flex-direction: column;
}
.error-code {
font-size: 80px;
}
.showcase-item img {
height: 240px;
}
.policy-content h1 {
font-size: 36px;
}
.policy-content h2 {
font-size: 24px;
margin-top: 40px;
}
.policy-content h3 {
font-size: 20px;
}
.policy-content h4 {
font-size: 17px;
}
.policy-content ul, .policy-content ol {
margin-left: 24px;
}
.policy-content table {
font-size: 13px;
}
.policy-content th, .policy-content td {
padding: 12px;
}
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}
.container {
padding: 0 16px;
}
.logo {
font-size: 17px;
}
.header {
padding: 12px 0;
}
.hero {
min-height: 70vh;
}
.hero h1 {
font-size: 32px;
letter-spacing: -0.5px;
}
.hero p {
font-size: 17px;
margin-bottom: 28px;
}
.hero-features {
flex-direction: column;
gap: 24px;
margin-top: 40px;
}
.hero-feature-icon {
font-size: 30px;
}
section {
padding: 40px 0;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
}
h3 {
font-size: 17px;
}
h4 {
font-size: 16px;
}
.btn {
padding: 12px 24px;
font-size: 14px;
}
.btn-secondary {
padding: 10px 20px;
font-size: 13px;
}
.page-hero {
padding: 50px 0;
}
.page-hero h1 {
font-size: 30px;
}
.process-steps {
grid-template-columns: 1fr;
}
.step-number {
width: 50px;
height: 50px;
font-size: 20px;
}
.price {
font-size: 24px;
}
.feature-card, .material-card, .solution-card, .product-card, .guarantee-item, .faq-item, .testimonial {
padding: 20px;
}
.showcase-item img {
height: 200px;
}
.showcase-item h3, .showcase-item p {
padding-left: 20px;
padding-right: 20px;
}
.footer {
padding: 40px 0 16px;
}
.footer-content {
grid-template-columns: 1fr;
gap: 24px;
}
.policy-content {
padding: 40px 0;
}
.policy-content h1 {
font-size: 30px;
line-height: 1.3;
}
.update-date {
margin-bottom: 32px;
}
.policy-content h2 {
font-size: 22px;
margin-top: 36px;
margin-bottom: 16px;
}
.policy-content h3 {
font-size: 18px;
margin-top: 28px;
}
.policy-content h4 {
font-size: 16px;
}
.policy-content p {
font-size: 14px;
margin-bottom: 16px;
}
.policy-content ul, .policy-content ol {
margin-left: 20px;
margin-bottom: 16px;
}
.policy-content li {
margin-bottom: 10px;
}
.policy-content table {
font-size: 12px;
}
.policy-content th, .policy-content td {
padding: 10px 8px;
}
.form-template, .policy-highlight, .policy-note, .policy-warning {
padding: 20px;
margin: 20px 0;
}
.error-code {
font-size: 70px;
}
.thankyou-content, .error-content {
padding: 40px 20px;
}
}

@media (max-width: 360px) {
body {
font-size: 13px;
}
.container {
padding: 0 12px;
}
.logo {
font-size: 16px;
}
.hero {
min-height: 65vh;
}
.hero h1 {
font-size: 28px;
}
.hero p {
font-size: 16px;
margin-bottom: 24px;
}
.hero-features {
margin-top: 32px;
gap: 20px;
}
.hero-feature-icon {
font-size: 28px;
}
section {
padding: 32px 0;
}
h2 {
font-size: 22px;
margin-bottom: 16px;
}
h3 {
font-size: 16px;
}
h4 {
font-size: 15px;
}
.btn {
padding: 10px 20px;
font-size: 13px;
}
.btn-secondary {
padding: 9px 18px;
font-size: 12px;
}
.page-hero {
padding: 40px 0;
}
.page-hero h1 {
font-size: 26px;
}
.step-number {
width: 45px;
height: 45px;
font-size: 18px;
margin-bottom: 12px;
}
.price {
font-size: 22px;
}
.features-grid, .materials-grid, .solutions-grid, .showcase-grid, .faq-grid, .guarantee-grid, .products-grid {
gap: 16px;
}
.feature-card, .material-card, .solution-card, .product-card, .showcase-item, .guarantee-item, .faq-item, .testimonial {
padding: 16px;
}
.showcase-item img {
height: 180px;
}
.showcase-item h3 {
padding: 16px 16px 8px;
font-size: 16px;
}
.showcase-item p {
padding: 0 16px 16px;
font-size: 13px;
}
.faq-item h3 {
font-size: 16px;
}
.footer {
padding: 32px 0 12px;
}
.footer-section h4 {
font-size: 16px;
margin-bottom: 12px;
}
.footer-section a, .footer-section p {
font-size: 13px;
}
.footer-bottom {
font-size: 12px;
}
.policy-content {
padding: 32px 0;
}
.policy-content h1 {
font-size: 26px;
margin-bottom: 10px;
}
.update-date {
font-size: 12px;
margin-bottom: 28px;
padding-bottom: 16px;
}
.policy-content h2 {
font-size: 20px;
margin-top: 32px;
margin-bottom: 14px;
padding-top: 20px;
}
.policy-content h3 {
font-size: 17px;
margin-top: 24px;
margin-bottom: 12px;
}
.policy-content h4 {
font-size: 15px;
margin-top: 20px;
}
.policy-content p {
font-size: 13px;
margin-bottom: 14px;
line-height: 1.7;
}
.policy-content ul, .policy-content ol {
margin-left: 18px;
margin-bottom: 14px;
}
.policy-content li {
margin-bottom: 8px;
padding-left: 4px;
font-size: 13px;
}
.policy-content table {
font-size: 11px;
margin: 20px 0;
}
.policy-content th, .policy-content td {
padding: 8px 6px;
}
.policy-content th {
font-size: 11px;
}
.form-template, .policy-highlight, .policy-note, .policy-warning {
padding: 16px;
margin: 16px 0;
font-size: 13px;
}
.error-code {
font-size: 60px;
}
.thankyou-content h1, .error-content h2 {
font-size: 28px;
}
.thankyou-content, .error-content {
padding: 32px 16px;
}
.privacy-popup {
padding: 16px;
}
.privacy-content h3 {
font-size: 17px;
margin-bottom: 10px;
}
.privacy-content p {
font-size: 13px;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}
.container {
padding: 0 10px;
}
.logo {
font-size: 15px;
}
.hero h1 {
font-size: 26px;
}
.hero p {
font-size: 15px;
}
.hero-feature span {
font-size: 13px;
}
section {
padding: 28px 0;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 15px;
}
.page-hero {
padding: 36px 0;
}
.page-hero h1 {
font-size: 24px;
}
.btn {
padding: 9px 18px;
font-size: 12px;
}
.feature-card, .material-card, .solution-card, .product-card, .guarantee-item, .faq-item, .testimonial {
padding: 14px;
}
.showcase-item img {
height: 160px;
}
.showcase-item h3 {
padding: 14px 14px 8px;
font-size: 15px;
}
.showcase-item p {
padding: 0 14px 14px;
font-size: 12px;
}
.policy-content h1 {
font-size: 24px;
}
.policy-content h2 {
font-size: 18px;
margin-top: 28px;
}
.policy-content h3 {
font-size: 16px;
margin-top: 20px;
}
.policy-content h4 {
font-size: 14px;
}
.policy-content p {
font-size: 12px;
}
.policy-content ul, .policy-content ol {
margin-left: 16px;
}
.policy-content li {
font-size: 12px;
margin-bottom: 6px;
}
.policy-content table {
font-size: 10px;
}
.policy-content th, .policy-content td {
padding: 6px 4px;
}
.form-template, .policy-highlight, .policy-note, .policy-warning {
padding: 14px;
font-size: 12px;
}
.footer-section h4 {
font-size: 15px;
}
.footer-section a, .footer-section p {
font-size: 12px;
}
}
