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

:root {
--primary-teal: #00B4A6;
--accent-coral: #FF6B6B;
--deep-navy: #1A1F3A;
--electric-purple: #8B5CF6;
--text-primary: #1A1F3A;
--text-secondary: #6B7280;
--bg-light: #F9FAFB;
--white: #FFFFFF;
}

body {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-primary);
background: var(--white);
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

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-slate);
color: var(--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: 10px;
}

.btn-accept {
background: var(--primary-teal);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 700;
}

.btn-learn {
color: var(--white);
text-decoration: underline;
font-size: 13px;
}

.header-unique {
background: var(--white);
padding: 20px 0;
border-bottom: 1px solid rgba(10, 14, 39, 0.1);
}

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

.logo-brand {
font-family: 'Orbitron', sans-serif;
font-size: 1.4rem;
font-weight: 900;
background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

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

.nav-links a:hover,
.nav-links a.active {
color: var(--primary-teal);
}

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

.nav-burger {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
}

.nav-burger span {
width: 25px;
height: 2px;
background: var(--text-primary);
transition: all 0.3s ease;
}

.hero-mega {
position: relative;
padding: 120px 0 140px;
background: linear-gradient(135deg, var(--deep-navy) 0%, #2D3561 50%, var(--electric-purple) 100%);
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero-bg-pattern {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: 
radial-gradient(circle at 15% 20%, rgba(0, 180, 166, 0.2) 0%, transparent 50%),
radial-gradient(circle at 85% 80%, rgba(255, 107, 107, 0.18) 0%, transparent 50%),
radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="40" r="1.5" fill="rgba(0,180,166,0.08)"/></svg>');
background-size: auto, auto, auto, 80px 80px;
animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
50% { background-position: 100% 100%, 0% 0%, 30% 70%, 40px 40px; }
}

.hero-layout {
position: relative;
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 70px;
align-items: center;
width: 100%;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(0, 180, 166, 0.15);
color: var(--primary-teal);
padding: 10px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 700;
margin-bottom: 25px;
border: 1px solid rgba(0, 180, 166, 0.3);
backdrop-filter: blur(10px);
}

.hero-title {
font-size: 4.2rem;
margin-bottom: 25px;
color: var(--white);
line-height: 1.1;
letter-spacing: -0.02em;
animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-title .highlight {
background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-desc {
font-size: 18px;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 35px;
line-height: 1.8;
max-width: 90%;
}

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

.btn-hero-primary {
background: var(--primary-teal);
color: var(--white);
padding: 16px 40px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
box-shadow: 0 8px 25px rgba(0, 180, 166, 0.35);
position: relative;
overflow: hidden;
}

.btn-hero-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}

.btn-hero-primary:hover::before {
left: 100%;
}

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(0, 180, 166, 0.45);
}

.btn-hero-outline {
background: transparent;
color: var(--white);
padding: 16px 40px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
font-weight: 700;
font-size: 15px;
backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--white);
transform: translateY(-3px);
}

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

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

.stat-num {
font-size: 2.5rem;
font-weight: 900;
font-family: 'Orbitron', sans-serif;
color: var(--primary-teal);
text-shadow: 0 0 20px rgba(0, 180, 166, 0.3);
}

.stat-text {
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
margin-top: 5px;
font-weight: 500;
}

.hero-visual {
position: relative;
}

.hero-card-float {
position: relative;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 180, 166, 0.3);
background: linear-gradient(135deg, rgba(0, 180, 166, 0.15), rgba(139, 92, 246, 0.15));
padding: 20px;
backdrop-filter: blur(30px);
border: 2px solid rgba(255, 255, 255, 0.15);
animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-card-float img {
width: 100%;
border-radius: 20px;
filter: brightness(1.08) contrast(1.08) saturate(1.1);
transition: transform 0.5s ease;
}

.hero-card-float:hover img {
transform: scale(1.05);
}

.hero-float-badge {
position: absolute;
top: 30px;
right: 30px;
background: var(--accent-coral);
color: var(--white);
padding: 10px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 800;
box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}

.features-modern {
padding: 60px 0;
background: var(--white);
}

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

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

.feature-icon-box {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}

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

.feature-text p {
font-size: 13px;
color: var(--text-secondary);
}

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

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

.section-label {
display: inline-block;
background: rgba(0, 180, 166, 0.1);
color: var(--primary-teal);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
margin-bottom: 15px;
border: 1px solid rgba(0, 180, 166, 0.2);
}

.section-head h2 {
margin-bottom: 10px;
}

.section-head p {
color: var(--text-secondary);
font-size: 15px;
}

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

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

.product-box:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.product-img-wrap {
position: relative;
width: 100%;
height: 300px;
overflow: hidden;
background: var(--bg-light);
}

.product-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-tag {
position: absolute;
top: 15px;
left: 15px;
background: var(--accent-coral);
color: var(--white);
padding: 6px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 800;
box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-data {
padding: 25px;
}

.product-data h3 {
font-size: 1.3rem;
margin-bottom: 12px;
}

.product-data p {
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 15px;
line-height: 1.6;
}

.product-price {
font-size: 1.8rem;
font-weight: 900;
font-family: 'Orbitron', sans-serif;
color: var(--primary-teal);
margin-bottom: 15px;
}

.btn-product {
display: inline-block;
background: var(--primary-teal);
color: var(--white);
padding: 12px 28px;
border-radius: 50px;
font-size: 14px;
font-weight: 700;
}

.btn-product:hover {
background: var(--accent-coral);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.tech-innovation {
padding: 80px 0;
background: var(--deep-navy);
color: var(--white);
}

.innovation-grid {
max-width: 900px;
margin: 0 auto;
}

.innovation-content .section-label {
background: rgba(0, 180, 166, 0.2);
color: var(--primary-teal);
border-color: rgba(0, 180, 166, 0.3);
}

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

.innovation-content p {
font-size: 16px;
line-height: 1.7;
margin-bottom: 25px;
opacity: 0.9;
}

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

.innovation-list li {
padding: 12px 0;
font-size: 15px;
display: flex;
align-items: center;
gap: 12px;
}

.innovation-list i {
color: var(--primary-teal);
font-size: 1.2rem;
}

.btn-innovation {
display: inline-block;
background: var(--primary-teal);
color: var(--white);
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
}

.btn-innovation:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 180, 166, 0.4);
background: var(--accent-coral);
}

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

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

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

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 15px;
color: #FFA500;
font-size: 1.1rem;
}

.testimonial-card p {
font-size: 14px;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 20px;
}

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

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

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

.why-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}

.why-content .section-label {
margin-bottom: 15px;
}

.why-content h2 {
margin-bottom: 20px;
}

.why-content p {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 15px;
}

.why-features {
display: grid;
gap: 20px;
}

.why-box {
background: var(--white);
padding: 25px;
border-radius: 12px;
display: flex;
gap: 15px;
}

.why-box i {
font-size: 2rem;
color: var(--primary-teal);
flex-shrink: 0;
}

.why-box h4 {
margin-bottom: 8px;
}

.why-box p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.6;
}

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

.location-grid {
max-width: 900px;
margin: 0 auto;
}

.location-info .section-label {
margin-bottom: 15px;
}

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

.location-info > p {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 30px;
}

.location-details {
display: grid;
gap: 25px;
}

.location-item {
display: flex;
gap: 20px;
}

.location-item i {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}

.location-item strong {
display: block;
font-size: 15px;
margin-bottom: 5px;
}

.location-item p {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
}

.newsletter-section {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary-teal), var(--accent-coral));
}

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

.newsletter-content {
flex: 1;
min-width: 300px;
}

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

.newsletter-content p {
color: rgba(255, 255, 255, 0.9);
font-size: 15px;
}

.btn-newsletter {
background: var(--white);
color: var(--primary-teal);
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
display: inline-block;
}

.btn-newsletter:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

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

.footer-block h4 {
font-size: 1rem;
margin-bottom: 15px;
color: var(--white);
}

.footer-block p {
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
}

.footer-block a {
display: block;
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 8px;
}

.footer-block a:hover {
color: var(--primary-teal);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
}

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

.page-banner h1 {
font-size: 2.8rem;
margin-bottom: 10px;
color: var(--white);
}

.page-banner p {
font-size: 16px;
opacity: 0.9;
}

.products-detailed {
padding: 80px 0;
background: var(--white);
}

.product-full {
display: grid;
grid-template-columns: 450px 1fr;
gap: 50px;
margin-bottom: 60px;
background: var(--bg-light);
padding: 40px;
border-radius: 20px;
}

.product-full-img img {
border-radius: 12px;
width: 100%;
}

.product-full-info h2 {
font-size: 2rem;
margin-bottom: 15px;
}

.product-full-price {
font-size: 2.5rem;
font-weight: 900;
font-family: 'Orbitron', sans-serif;
color: var(--primary-teal);
margin-bottom: 25px;
}

.product-full-desc p {
margin-bottom: 20px;
line-height: 1.7;
color: var(--text-secondary);
}

.product-full-desc h3 {
font-size: 1.2rem;
margin-bottom: 15px;
margin-top: 25px;
}

.product-full-desc ul {
list-style: none;
}

.product-full-desc li {
padding: 10px 0;
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 14px;
}

.product-full-desc li i {
color: var(--primary-teal);
margin-top: 3px;
font-size: 1.1rem;
}

.btn-inquire {
display: inline-block;
background: var(--primary-teal);
color: var(--white);
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
margin-top: 20px;
}

.btn-inquire:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 180, 166, 0.4);
background: var(--accent-coral);
}

.product-advantages {
padding: 80px 0;
background: var(--bg-light);
}

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

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

.advantage-box i {
font-size: 3rem;
color: var(--primary-teal);
margin-bottom: 15px;
}

.advantage-box h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}

.advantage-box p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.6;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }

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

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

.nav-burger {
display: flex;
}

.hero-mega {
padding: 70px 0 90px;
min-height: auto;
}

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

.hero-title {
font-size: 2.4rem;
}

.hero-desc {
max-width: 100%;
font-size: 16px;
}

.hero-visual {
order: -1;
}

.hero-stats {
justify-content: space-around;
gap: 20px;
}

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

.product-full {
grid-template-columns: 1fr;
gap: 30px;
padding: 25px;
}

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

.newsletter-box {
flex-direction: column;
text-align: center;
}

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

.page-banner h1 {
font-size: 2.2rem;
}

.hero-card-float {
padding: 12px;
}

.hero-float-badge {
top: 20px;
right: 20px;
font-size: 12px;
}

.stat-num {
font-size: 2rem;
}

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

.location-grid > div > div {
grid-template-columns: 1fr !important;
}

.why-box {
flex-direction: column;
text-align: center;
}

.why-box i {
margin: 0 auto;
}
}

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

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }
body { font-size: 13px; }

.hero-title {
font-size: 2rem;
}

.hero-desc {
font-size: 15px;
}

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

.btn-hero-primary,
.btn-hero-outline {
width: 100%;
text-align: center;
padding: 14px 30px;
}

.hero-stats {
justify-content: space-between;
gap: 15px;
flex-wrap: wrap;
}

.stat-box {
flex: 1;
min-width: 90px;
}

.stat-num {
font-size: 1.7rem;
}

.stat-text {
font-size: 11px;
}

.features-wrap {
grid-template-columns: 1fr;
gap: 20px;
}

.product-full {
padding: 20px;
}

.product-data {
padding: 20px;
}

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

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

.page-banner h1 {
font-size: 1.9rem;
}

.page-banner p {
font-size: 14px;
}

.location-grid > div > div {
grid-template-columns: 1fr !important;
gap: 40px !important;
}

.testimonial-card {
padding: 25px;
}

.advantage-box {
padding: 25px;
}
}

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.95rem; }
body { font-size: 12px; }

.logo-brand {
font-size: 1rem;
}

.nav-links a {
font-size: 13px;
}

.hero-mega {
padding: 50px 0 70px;
min-height: auto;
}

.hero-title {
font-size: 1.6rem;
margin-bottom: 15px;
line-height: 1.2;
}

.hero-desc {
font-size: 13px;
max-width: 100%;
margin-bottom: 25px;
}

.hero-badge {
font-size: 11px;
padding: 8px 16px;
}

.btn-hero-primary,
.btn-hero-outline,
.btn-newsletter,
.btn-innovation,
.btn-inquire,
.btn-product {
padding: 12px 24px;
font-size: 13px;
width: 100%;
text-align: center;
}

.product-data,
.product-full-info {
padding: 15px;
}

.stat-box {
min-width: 70px;
}

.stat-num {
font-size: 1.3rem;
}

.stat-text {
font-size: 10px;
}

.feature-icon-box,
.location-item i {
width: 40px;
height: 40px;
font-size: 1.2rem;
}

.feature-text h3 {
font-size: 0.95rem;
}

.feature-text p {
font-size: 12px;
}

.hero-stats {
gap: 12px;
justify-content: space-between;
}

.hero-cta-group {
gap: 10px;
margin-bottom: 30px;
}

.section-head h2 {
font-size: 1.3rem;
}

.section-head p {
font-size: 12px;
}

.section-label {
font-size: 11px;
padding: 5px 12px;
}

.product-price {
font-size: 1.4rem;
}

.product-full-price {
font-size: 1.8rem;
}

.testimonial-card,
.why-box,
.advantage-box {
padding: 18px;
}

.testimonial-card p {
font-size: 12px;
}

.hero-float-badge {
top: 15px;
right: 15px;
padding: 6px 12px;
font-size: 10px;
}

.hero-card-float {
padding: 10px;
}

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

.product-img-wrap {
height: 250px;
}

.footer-grid {
gap: 25px;
}

.footer-block h4 {
font-size: 0.9rem;
}

.footer-block p,
.footer-block a {
font-size: 12px;
}

.page-banner h1 {
font-size: 1.6rem;
}

.page-banner p {
font-size: 13px;
}

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

.newsletter-content p {
font-size: 13px;
}

table {
font-size: 11px;
}

table th,
table td {
padding: 12px 8px !important;
}
}
