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

:root {
--primary-color: #2d5a4f;
--secondary-color: #7fa99b;
--accent-color: #e8a87c;
--text-color: #333;
--light-bg: #f8f9fa;
--shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

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

p { margin-bottom: 1rem; }

a {
color: var(--primary-color);
text-decoration: none;
transition: all 0.3s ease;
}

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

img {
max-width: 100%;
height: auto;
display: block;
}

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

.header-unique {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 15px 0;
position: relative;
box-shadow: var(--shadow);
}

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

.brand-logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: #fff;
letter-spacing: -0.5px;
}

.main-nav {
position: relative;
}

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

.nav-toggle span {
width: 24px;
height: 2px;
background: #fff;
transition: all 0.3s ease;
}

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

.nav-menu a {
color: #fff;
font-size: 14px;
font-weight: 500;
padding: 8px 12px;
border-radius: 4px;
transition: all 0.3s ease;
}

.nav-menu a:hover {
background: rgba(255,255,255,0.15);
}

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

.hero-section::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 60%;
height: 100%;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
opacity: 0.9;
z-index: 1;
}

.hero-section::after {
content: '';
position: absolute;
bottom: -50px;
left: -50px;
width: 300px;
height: 300px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
z-index: 1;
}

.hero-section .container {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
padding: 80px 20px;
}

.hero-content {
color: #fff;
animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-content h1 {
font-size: 3.2rem;
color: #fff;
margin-bottom: 1.5rem;
line-height: 1.1;
font-weight: 700;
letter-spacing: -1px;
}

.hero-content h1 span {
display: block;
color: var(--accent-color);
font-size: 2.8rem;
margin-top: 0.5rem;
}

.hero-content p {
font-size: 1.15rem;
color: rgba(255,255,255,0.9);
margin-bottom: 2rem;
line-height: 1.7;
max-width: 500px;
}

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

.hero-stats {
display: flex;
gap: 30px;
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.2);
}

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

.stat-number {
font-size: 2.2rem;
font-weight: 700;
color: var(--accent-color);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
letter-spacing: 0.5px;
}

.hero-visual {
position: relative;
animation: fadeInRight 0.8s ease-out;
}

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

.hero-visual::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.1);
border-radius: 20px;
z-index: -1;
}

.hero-visual img {
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.5s ease;
}

.hero-visual img:hover {
transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-badge {
position: absolute;
top: 20px;
right: 20px;
background: #fff;
color: var(--primary-color);
padding: 12px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 8px;
z-index: 3;
}

.hero-badge i {
color: var(--accent-color);
font-size: 16px;
}

.cta-button {
display: inline-block;
background: var(--accent-color);
color: #fff;
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(232,168,124,0.3);
}

.cta-button:hover {
background: #d89565;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(232,168,124,0.4);
}

.cta-button-alt {
display: inline-block;
background: var(--primary-color);
color: #fff;
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.cta-button-alt:hover {
background: #234539;
transform: translateY(-2px);
}

.text-link {
color: var(--primary-color);
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 6px;
}

.text-link:hover {
gap: 10px;
}

.intro-section {
padding: 60px 0;
background: #fff;
}

.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
}

.section-label {
display: inline-block;
background: var(--accent-color);
color: #fff;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
}

.section-header h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 1rem;
}

.section-subtitle {
font-size: 1.05rem;
color: #666;
line-height: 1.7;
margin: 0;
}

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

.intro-card {
text-align: center;
padding: 30px 20px;
border-radius: 8px;
background: var(--light-bg);
transition: all 0.3s ease;
}

.intro-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.intro-card i {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 1rem;
}

.intro-card h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.intro-card p {
font-size: 14px;
color: #666;
margin: 0;
}

.approach-section {
padding: 60px 0;
background: var(--primary-color);
color: #fff;
}

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

.approach-text h2 {
color: #fff;
margin-bottom: 1.2rem;
}

.approach-text p {
margin-bottom: 1.2rem;
opacity: 0.95;
}

.approach-text .text-link {
color: var(--accent-color);
}

.feature-item {
background: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 8px;
margin-bottom: 15px;
border-left: 3px solid var(--accent-color);
}

.feature-number {
display: inline-block;
background: var(--accent-color);
color: #fff;
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
border-radius: 50%;
font-weight: 700;
font-size: 14px;
margin-bottom: 8px;
}

.feature-item h4 {
color: #fff;
margin-bottom: 0.5rem;
font-size: 1.05rem;
}

.feature-item p {
font-size: 13px;
margin: 0;
opacity: 0.9;
}

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

.benefits-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 2.5rem;
}

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

.benefit-card {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.benefit-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
transform: translateY(-3px);
}

.benefit-card i {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 0.8rem;
}

.benefit-card h3 {
color: var(--primary-color);
font-size: 1.1rem;
margin-bottom: 0.6rem;
}

.benefit-card p {
font-size: 13px;
color: #666;
margin: 0;
}

.resources-section {
padding: 60px 0;
background: #fff;
}

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

.resources-image img {
border-radius: 12px;
box-shadow: var(--shadow);
}

.resources-text h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.resources-text p {
margin-bottom: 1.5rem;
}

.resources-list {
list-style: none;
margin-bottom: 1.5rem;
}

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

.resources-list i {
color: var(--accent-color);
font-size: 16px;
}

.cta-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--accent-color);
opacity: 0.1;
border-radius: 50%;
}

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

.cta-label {
display: inline-block;
background: var(--accent-color);
color: #fff;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
}

.cta-content h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 1.2rem;
line-height: 1.2;
}

.cta-content > p {
font-size: 1.05rem;
color: #666;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.cta-benefits {
list-style: none;
margin-bottom: 2rem;
}

.cta-benefits li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--text-color);
}

.cta-benefits i {
color: var(--accent-color);
font-size: 18px;
}

.cta-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cta-button-outline {
display: inline-block;
background: transparent;
color: var(--primary-color);
padding: 12px 28px;
border: 2px solid var(--primary-color);
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.cta-button-outline:hover {
background: var(--primary-color);
color: #fff;
transform: translateY(-2px);
}

.cta-visual {
display: flex;
flex-direction: column;
gap: 20px;
}

.cta-card {
background: #fff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border-left: 4px solid var(--accent-color);
}

.cta-card:hover {
transform: translateX(5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cta-card i {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.cta-card h4 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.cta-card p {
font-size: 13px;
color: #666;
margin: 0;
line-height: 1.6;
}

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

.page-hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
opacity: 0.9;
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
padding: 60px 20px;
}

.page-hero .hero-content {
max-width: 700px;
color: #fff;
}

.page-hero h1 {
color: #fff;
font-size: 2.8rem;
margin-bottom: 1rem;
line-height: 1.1;
}

.page-hero h1 span {
display: block;
color: var(--accent-color);
font-size: 2.4rem;
margin-top: 0.5rem;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 600px;
line-height: 1.7;
margin-bottom: 2rem;
}

.page-hero .hero-badge {
position: absolute;
top: 20px;
right: 20px;
background: #fff;
color: var(--primary-color);
padding: 12px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 8px;
z-index: 3;
}

.page-hero .hero-badge i {
color: var(--accent-color);
font-size: 16px;
}

.page-hero .hero-actions {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}

.content-section {
padding: 50px 0;
}

.content-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
}

.main-content {
max-width: 100%;
}

.content-image {
margin: 2rem 0;
text-align: center;
}

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

.main-content h2 {
color: var(--primary-color);
margin-top: 1.5rem;
margin-bottom: 1rem;
}

.main-content h3 {
color: var(--primary-color);
margin-top: 1.2rem;
margin-bottom: 0.8rem;
}

.main-content ul {
margin-left: 20px;
margin-bottom: 1.2rem;
}

.main-content li {
margin-bottom: 0.5rem;
font-size: 14px;
}

.sidebar-content {
position: sticky;
top: 20px;
}

.sidebar-card {
background: var(--light-bg);
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}

.sidebar-card h4 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.tip-list {
list-style: none;
}

.tip-list li {
padding: 8px 0;
display: flex;
align-items: start;
gap: 10px;
font-size: 13px;
}

.tip-list i {
color: var(--accent-color);
margin-top: 2px;
}

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

.products-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 1rem;
}

.section-intro {
text-align: center;
max-width: 600px;
margin: 0 auto 2.5rem;
color: #666;
}

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

.product-card {
background: #fff;
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-icon {
width: 70px;
height: 70px;
margin: 0 auto 1.2rem;
background: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.product-icon i {
font-size: 2rem;
color: var(--primary-color);
}

.product-card h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.product-card p {
font-size: 13px;
color: #666;
margin-bottom: 1.2rem;
}

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 1.2rem;
}

.product-button {
display: inline-block;
background: var(--primary-color);
color: #fff;
padding: 10px 24px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease;
}

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

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

.balance-text h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.balance-image img {
border-radius: 12px;
box-shadow: var(--shadow);
}

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

.habits-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 2.5rem;
}

.habits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.habit-card {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.habit-card:hover {
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.habit-icon {
width: 60px;
height: 60px;
background: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}

.habit-icon i {
font-size: 1.8rem;
color: var(--primary-color);
}

.habit-card h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.habit-card p {
font-size: 13px;
color: #666;
margin: 0;
}

.strategies-section {
padding: 60px 0;
background: #fff;
}

.strategies-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 2.5rem;
}

.strategies-layout {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.strategy-block {
background: var(--light-bg);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.strategy-block h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.strategy-block p {
font-size: 14px;
color: #666;
margin: 0;
}

.contact-hero {
padding: 50px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: #fff;
text-align: center;
}

.contact-hero h1 {
color: #fff;
margin-bottom: 0.8rem;
}

.contact-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

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

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

.contact-form-wrapper h2 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.contact-form-wrapper > p {
color: #666;
margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid #e0e0e0;
border-radius: 6px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
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(45,90,79,0.1);
}

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

.checkbox-label {
display: flex;
align-items: start;
gap: 8px;
font-size: 13px;
cursor: pointer;
}

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

.submit-button {
background: var(--accent-color);
color: #fff;
padding: 14px 32px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
justify-content: center;
}

.submit-button:hover {
background: #d89565;
transform: translateY(-2px);
}

.contact-info-card {
background: var(--light-bg);
padding: 25px;
border-radius: 8px;
margin-bottom: 20px;
}

.contact-info-card h3 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

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

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

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

.info-item p {
font-size: 13px;
color: #666;
margin: 0;
}

.contact-hours {
background: var(--primary-color);
color: #fff;
padding: 20px;
border-radius: 8px;
}

.contact-hours h4 {
color: #fff;
margin-bottom: 1rem;
}

.contact-hours ul {
list-style: none;
}

.contact-hours li {
padding: 6px 0;
font-size: 13px;
display: flex;
justify-content: space-between;
}

.contact-hours span {
font-weight: 600;
}

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

.map-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 2rem;
}

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

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

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

.thankyou-icon {
font-size: 5rem;
color: var(--accent-color);
margin-bottom: 1.5rem;
}

.thankyou-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.thankyou-content p {
font-size: 1.05rem;
color: #666;
margin-bottom: 2rem;
}

.thankyou-actions {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
}

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

.error-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.error-content p {
font-size: 1.05rem;
color: #666;
margin-bottom: 2rem;
}

.error-actions {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
}

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

.policy-date {
color: #666;
font-size: 14px;
margin-bottom: 2rem;
}

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

.policy-content h2 {
color: var(--primary-color);
margin-top: 2rem;
margin-bottom: 1rem;
padding-top: 1rem;
border-top: 1px solid #e0e0e0;
}

.policy-content h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}

.policy-content h3 {
color: var(--primary-color);
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.policy-content ul {
margin-left: 20px;
margin-bottom: 1.2rem;
}

.policy-content li {
margin-bottom: 0.5rem;
font-size: 14px;
}

.policy-content p {
margin-bottom: 1rem;
font-size: 14px;
line-height: 1.7;
}

.site-footer {
background: #1a1a1a;
color: #fff;
padding: 30px 0 15px;
margin-top: 50px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand strong {
display: block;
font-size: 1.1rem;
margin-bottom: 8px;
}

.footer-brand p {
font-size: 13px;
opacity: 0.8;
margin: 0;
}

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

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

.footer-links a:hover {
opacity: 1;
}

.footer-disclaimer {
padding: 20px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
font-size: 11px;
opacity: 0.7;
margin-bottom: 8px;
line-height: 1.6;
}

.footer-bottom {
text-align: center;
padding-top: 15px;
}

.footer-bottom p {
font-size: 12px;
opacity: 0.7;
margin: 0;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1a1a1a;
color: #fff;
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
z-index: 1000;
display: none;
}

.cookie-banner.show {
display: block;
}

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

.cookie-content p {
font-size: 13px;
margin: 0;
flex: 1;
}

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

.cookie-actions a {
color: var(--accent-color);
font-size: 13px;
}

.cookie-actions button {
background: var(--accent-color);
color: #fff;
border: none;
padding: 8px 20px;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-actions button:hover {
background: #d89565;
}

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

.nav-menu {
position: absolute;
top: 100%;
right: 20px;
background: var(--primary-color);
flex-direction: column;
padding: 15px;
border-radius: 8px;
box-shadow: var(--shadow);
display: none;
margin-top: 10px;
min-width: 180px;
z-index: 9999;
}

.nav-menu.active {
display: flex;
}

.hero-section {
min-height: auto;
padding: 40px 0 60px;
}

.hero-section::before {
width: 100%;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
opacity: 0.3;
}

.hero-section .container {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 20px;
}

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

.hero-content h1 span {
font-size: 2rem;
}

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

.hero-stats {
gap: 20px;
margin-top: 30px;
padding-top: 20px;
flex-wrap: wrap;
}

.stat-item {
flex: 1;
min-width: 80px;
}

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

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

.hero-badge {
top: 10px;
right: 10px;
padding: 8px 15px;
font-size: 11px;
position: absolute;
}

.hero-visual {
order: -1;
}

.hero-visual img {
width: 100%;
height: auto;
}

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

.page-hero::before {
width: 100%;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
opacity: 0.3;
}

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

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

.page-hero .hero-badge {
top: 10px;
right: 10px;
padding: 8px 15px;
font-size: 11px;
}

.page-hero .hero-actions {
flex-direction: column;
width: 100%;
}

.page-hero .hero-actions .cta-button,
.page-hero .hero-actions .text-link {
width: 100%;
text-align: center;
justify-content: center;
}

.hero-visual img {
transform: none;
}

.hero-visual::before {
display: none;
}

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

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

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

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

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

.sidebar-content {
position: static;
}

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

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

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

.strategies-layout {
grid-template-columns: 1fr;
gap: 20px;
}

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

.cta-content h2 {
font-size: 2rem;
}

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

.cta-actions .cta-button,
.cta-actions .cta-button-outline {
width: 100%;
text-align: center;
}

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

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

.footer-links {
flex-direction: column;
gap: 10px;
}

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

.cookie-actions {
width: 100%;
justify-content: space-between;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }

body {
font-size: 14px;
}

.container {
padding: 0 15px;
}

.hero-section {
min-height: auto;
padding: 30px 0 40px;
}

.hero-content h1 {
font-size: 1.8rem;
line-height: 1.2;
}

.hero-content h1 span {
font-size: 1.6rem;
margin-top: 0.3rem;
}

.hero-content p {
font-size: 0.9rem;
line-height: 1.6;
}

.hero-stats {
flex-wrap: wrap;
gap: 15px;
align-items: flex-start;
margin-top: 25px;
padding-top: 20px;
justify-content: space-between;
}

.stat-item {
flex: 0 1 calc(33.333% - 10px);
min-width: 70px;
}

.stat-number {
font-size: 1.5rem;
}

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

.hero-actions {
flex-direction: column;
width: 100%;
gap: 10px;
}

.hero-actions .cta-button,
.hero-actions .text-link {
width: 100%;
text-align: center;
justify-content: center;
padding: 10px 20px;
font-size: 13px;
}

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

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

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

.section-subtitle {
font-size: 0.95rem;
}

.intro-card,
.benefit-card,
.habit-card {
padding: 20px 15px;
}

.intro-card i,
.benefit-card i {
font-size: 2rem;
}

.intro-card p,
.benefit-card p,
.habit-card p {
font-size: 13px;
}

.approach-section {
padding: 40px 0;
}

.feature-item {
padding: 15px;
margin-bottom: 12px;
}

.feature-number {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 12px;
}

.feature-item h4 {
font-size: 1rem;
}

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

.benefits-section,
.resources-section,
.cta-section {
padding: 40px 0;
}

.cta-content h2 {
font-size: 1.8rem;
}

.cta-content > p {
font-size: 0.95rem;
}

.cta-benefits li {
font-size: 13px;
padding: 8px 0;
}

.cta-card {
padding: 20px;
}

.cta-card h4 {
font-size: 1rem;
}

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

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

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

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

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

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

.content-section {
padding: 30px 0;
}

.main-content h2 {
font-size: 1.4rem;
}

.main-content h3 {
font-size: 1.15rem;
}

.main-content p,
.main-content li {
font-size: 13px;
}

.sidebar-card {
padding: 15px;
}

.contact-form-wrapper h2 {
font-size: 1.5rem;
}

.form-group label {
font-size: 13px;
}

.form-group input,
.form-group textarea {
font-size: 13px;
padding: 10px;
}

.submit-button {
padding: 12px 24px;
font-size: 14px;
}

.contact-info-card {
padding: 20px;
}

.info-item {
margin-bottom: 1.2rem;
}

.footer-disclaimer p {
font-size: 10px;
}

.cookie-banner {
padding: 15px;
}

.cookie-content p {
font-size: 12px;
}

.cookie-actions button {
padding: 6px 16px;
font-size: 12px;
}

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

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

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

.error-content p,
.thankyou-content p {
font-size: 0.95rem;
}
}

@media (max-width: 320px) {
.hero-content h1 {
font-size: 1.5rem;
}

.hero-content h1 span {
font-size: 1.3rem;
}

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

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

.stat-number {
font-size: 1.4rem;
}

.hero-badge {
margin-bottom: 15px;
width: fit-content;
}

.container {
padding: 0 12px;
}

.intro-card,
.benefit-card,
.habit-card,
.cta-card {
padding: 18px 12px;
}
}
