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

:root {
--primary-color: #2d5a7b;
--secondary-color: #e8956f;
--dark-color: #1a2332;
--light-color: #f8f9fa;
--text-color: #333;
--border-color: #e0e0e0;
--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(--secondary-color);
}

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

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

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

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

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

.cookie-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.cookie-content a {
color: var(--secondary-color);
text-decoration: underline;
}

.cookie-btn {
background: var(--secondary-color);
color: #fff;
border: none;
padding: 8px 24px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

.cookie-btn:hover {
background: #d67d56;
transform: translateY(-1px);
}

.header {
background: linear-gradient(135deg, var(--primary-color), #1e3a52);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 9999;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav-link {
color: #fff;
font-size: 14px;
font-weight: 400;
padding: 6px 0;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.hero {
position: relative;
padding: 120px 0 100px;
overflow: hidden;
background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d5a7b 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}

.hero-shape {
position: absolute;
background: linear-gradient(135deg, rgba(123,165,145,0.1), rgba(232,149,111,0.1));
border-radius: 50%;
filter: blur(60px);
animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
width: 500px;
height: 500px;
top: -200px;
left: -100px;
animation-delay: 0s;
}

.hero-shape-2 {
width: 400px;
height: 400px;
top: 50%;
right: -150px;
animation-delay: 5s;
}

.hero-shape-3 {
width: 350px;
height: 350px;
bottom: -100px;
left: 30%;
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(30px, -30px) rotate(5deg); }
50% { transform: translate(-20px, 20px) rotate(-5deg); }
75% { transform: translate(20px, 10px) rotate(3deg); }
}

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

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

.hero-content {
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(232,149,111,0.15);
color: var(--secondary-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
margin-bottom: 1.5rem;
border: 1px solid rgba(232,149,111,0.3);
backdrop-filter: blur(10px);
}

.hero-title {
font-size: 3.2rem;
line-height: 1.15;
margin-bottom: 1.5rem;
font-weight: 700;
}

.hero-highlight {
background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 1.15rem;
line-height: 1.7;
opacity: 0.9;
margin-bottom: 2.5rem;
max-width: 540px;
}

.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.btn-large {
padding: 16px 40px;
font-size: 16px;
display: inline-flex;
align-items: center;
gap: 10px;
}

.btn-outline {
background: transparent;
color: #fff;
border: 2px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
}

.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.5);
color: #fff;
}

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

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

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

.stat-label {
font-size: 13px;
opacity: 0.8;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.hero-visual {
position: relative;
height: 500px;
}

.hero-card {
position: absolute;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 20px 25px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 12px;
animation: cardFloat 6s infinite ease-in-out;
z-index: 2;
}

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

.hero-card span {
font-weight: 600;
color: var(--text-color);
font-size: 14px;
}

.hero-card-1 {
top: 50px;
left: -20px;
animation-delay: 0s;
}

.hero-card-2 {
top: 180px;
right: -30px;
animation-delay: 2s;
}

.hero-card-3 {
bottom: 80px;
left: 20px;
animation-delay: 4s;
}

@keyframes cardFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}

.hero-image-wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 400px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
border: 3px solid rgba(255,255,255,0.1);
z-index: 1;
}

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.btn {
display: inline-block;
padding: 12px 32px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
border: none;
text-align: center;
}

.btn-primary {
background: var(--secondary-color);
color: #fff;
}

.btn-primary:hover {
background: #d67d56;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(232,149,111,0.4);
}

.btn-secondary {
background: transparent;
color: #fff;
border: 2px solid #fff;
}

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

.btn-small {
padding: 8px 20px;
font-size: 14px;
}

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

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

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

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

.features-section {
padding: 70px 0;
}

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

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

.feature-card {
background: #fff;
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: var(--shadow);
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

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

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

.approach-item {
background: #fff;
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
box-shadow: var(--shadow);
}

.approach-number {
font-size: 2rem;
font-weight: 700;
color: var(--secondary-color);
opacity: 0.3;
margin-bottom: 0.5rem;
}

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

.resources-section {
padding: 70px 0;
}

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

.resource-card {
background: #fff;
padding: 35px;
border-radius: 8px;
box-shadow: var(--shadow);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.resource-card:hover {
border-color: var(--secondary-color);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.link-arrow {
color: var(--secondary-color);
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 1rem;
}

.link-arrow:hover {
color: var(--primary-color);
}

.cta-section {
padding: 80px 0;
background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d5a7b 100%);
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(123,165,145,0.1), transparent 50%),
radial-gradient(circle at 70% 50%, rgba(232,149,111,0.1), transparent 50%);
pointer-events: none;
}

.cta-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.cta-content {
color: #fff;
}

.cta-badge {
display: inline-block;
background: rgba(232,149,111,0.15);
color: var(--secondary-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
margin-bottom: 1.5rem;
border: 1px solid rgba(232,149,111,0.3);
}

.cta-content h2 {
color: #fff;
font-size: 2.2rem;
margin-bottom: 1.2rem;
}

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

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

.cta-benefits li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 0.8rem;
font-size: 15px;
padding-left: 20px;
position: relative;
}

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

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

.cta-card {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}

.cta-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

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

.page-hero h1 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

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

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

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

.main-content {
background: #fff;
}

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

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

.main-content img {
margin: 2rem 0;
border-radius: 8px;
box-shadow: var(--shadow);
}

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

.main-content li {
margin-bottom: 0.5rem;
}

.info-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin: 2rem 0;
}

.info-box {
background: var(--light-color);
padding: 20px;
border-radius: 6px;
border-left: 3px solid var(--secondary-color);
}

.info-box h4 {
color: var(--primary-color);
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 10px;
}

.info-box i {
color: var(--secondary-color);
}

.disclaimer-text {
background: #fff3e0;
border-left: 4px solid #ff9800;
padding: 15px;
margin: 2rem 0;
font-size: 14px;
border-radius: 4px;
}

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

.sidebar-card {
background: var(--light-color);
padding: 25px;
border-radius: 8px;
box-shadow: var(--shadow);
}

.sidebar-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.2rem;
}

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

.tips-list li {
padding: 8px 0;
display: flex;
align-items: flex-start;
gap: 10px;
padding-left: 20px;
position: relative;
}

.tips-list li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
margin-top: 4px;
font-size: 14px;
}

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

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

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

.practice-item {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: var(--shadow);
text-align: center;
}

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

.strategy-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin: 2rem 0;
}

.strategy-card {
background: #fff;
padding: 25px;
border-radius: 8px;
border: 2px solid var(--border-color);
transition: all 0.3s ease;
}

.strategy-card:hover {
border-color: var(--secondary-color);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.product-card:hover {
border-color: var(--secondary-color);
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--secondary-color);
margin: 1.5rem 0;
}

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

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

.comparison-table {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.comparison-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--border-color);
}

.comparison-header {
background: var(--primary-color);
color: #fff;
}

.comparison-header .comparison-cell {
font-weight: 600;
}

.comparison-cell {
background: #fff;
padding: 15px;
}

.comparison-row:not(.comparison-header):hover .comparison-cell {
background: var(--light-color);
}

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

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

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

.tip-card {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: var(--shadow);
text-align: center;
border-top: 3px solid var(--secondary-color);
}

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

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

.contact-hero h1 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

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

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

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

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

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

.contact-form {
background: #fff;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--text-color);
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-family: 'Outfit', sans-serif;
font-size: 15px;
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,123,0.1);
}

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

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

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

.checkbox-label span {
flex: 1;
}

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

.contact-info-card {
background: var(--light-color);
padding: 30px;
border-radius: 8px;
box-shadow: var(--shadow);
}

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

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

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

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

.contact-item strong {
display: block;
color: var(--primary-color);
margin-bottom: 0.3rem;
}

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

.contact-hours {
background: #fff;
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
box-shadow: var(--shadow);
}

.contact-hours h4 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

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

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

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

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

.thankyou-section,
.error-section {
padding: 80px 0;
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
}

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

.thankyou-icon {
width: 80px;
height: 80px;
background: var(--secondary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
}

.thankyou-icon i {
font-size: 3rem;
color: #fff;
}

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

.thankyou-message {
font-size: 1.1rem;
color: #666;
margin-bottom: 1rem;
}

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

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

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

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

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

.error-links {
margin-top: 2rem;
}

.error-links p {
font-size: 14px;
margin-bottom: 0.8rem;
}

.error-links a {
display: inline-block;
margin: 0 10px;
font-size: 14px;
}

.policy-hero {
background: linear-gradient(135deg, var(--primary-color), #1e3a52);
padding: 50px 0;
text-align: center;
color: #fff;
}

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

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

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

.policy-article {
max-width: 900px;
margin: 0 auto;
background: #fff;
}

.policy-article h2 {
color: var(--primary-color);
margin-top: 2.5rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--border-color);
}

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

.policy-article ul {
margin-left: 20px;
margin-bottom: 1rem;
}

.policy-article li {
margin-bottom: 0.5rem;
}

.policy-article strong {
color: var(--primary-color);
}

.footer {
background: var(--dark-color);
color: #fff;
padding: 25px 0;
margin-top: auto;
}

.disclaimer-section {
padding: 40px 0;
background: #fff3e0;
border-top: 1px solid #ffb74d;
}

.disclaimer-box {
max-width: 900px;
margin: 0 auto;
background: #fff;
padding: 25px 30px;
border-radius: 8px;
border-left: 4px solid #ff9800;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.disclaimer-box p {
margin: 0;
font-size: 14px;
line-height: 1.7;
color: #666;
}

.disclaimer-box strong {
color: #ff9800;
font-weight: 600;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-info p {
margin: 0;
font-size: 14px;
opacity: 0.9;
}

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

.footer-links a {
color: #fff;
font-size: 14px;
opacity: 0.9;
}

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

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

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark-color);
flex-direction: column;
padding: 20px;
gap: 0;
display: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
z-index: 10000;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.nav.active {
display: flex;
max-height: 500px;
}

.nav-link {
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link:last-child {
border-bottom: none;
}

.hero {
padding: 60px 0;
}

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

.hero-content {
order: 1;
}

.hero-visual {
order: 2;
}

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

.hero-description {
font-size: 1rem;
}

.hero-actions {
justify-content: center;
}

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

.hero-visual {
height: 350px;
position: relative;
}

.hero-image-wrapper {
position: relative;
top: auto;
left: auto;
transform: none;
width: 100%;
max-width: 350px;
height: 350px;
margin: 0 auto;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
border: 3px solid rgba(255,255,255,0.1);
z-index: 1;
}

.hero-card {
padding: 15px 20px;
}

.hero-card i {
font-size: 1.5rem;
}

.hero-card span {
font-size: 13px;
}

.hero-card-1 {
top: 20px;
left: 10px;
}

.hero-card-2 {
top: 140px;
right: 10px;
}

.hero-card-3 {
bottom: 60px;
left: 10px;
}

.hero-shape {
filter: blur(40px);
}

.hero-shape-1 {
width: 300px;
height: 300px;
}

.hero-shape-2 {
width: 250px;
height: 250px;
}

.hero-shape-3 {
width: 200px;
height: 200px;
}

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

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

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

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

.approach-content {
grid-template-columns: 1fr;
}

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

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

.sidebar {
order: -1;
}

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

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

.thankyou-actions .btn,
.error-actions .btn {
width: 100%;
}

.comparison-row {
grid-template-columns: 1fr;
}

.comparison-cell {
border-bottom: 1px solid var(--border-color);
}

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

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

h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }
}

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

.hero {
padding: 40px 0;
}

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

.hero-badge {
font-size: 12px;
padding: 6px 16px;
}

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

.hero-actions .btn {
width: 100%;
justify-content: center;
}

.hero-stats {
gap: 25px;
}

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

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

.hero-visual {
height: auto;
}

.hero-image-wrapper {
width: 100%;
max-width: 250px;
margin: 0 auto;
}

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

.hero-card i {
font-size: 1.3rem;
}

.hero-card span {
font-size: 12px;
}

.hero-card-1 {
top: 10px;
left: 5px;
}

.hero-card-2 {
top: 120px;
right: 5px;
}

.hero-card-3 {
bottom: 50px;
left: 5px;
}

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

.cta-content {
text-align: center;
}

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

.cta-benefits {
margin-bottom: 1.5rem;
}

.intro-section,
.features-section,
.approach-section,
.resources-section,
.cta-section,
.content-section,
.practices-section,
.products-section,
.comparison-section,
.tips-section,
.contact-main,
.map-section,
.policy-content {
padding: 40px 0;
}

.page-hero,
.contact-hero,
.policy-hero {
padding: 40px 0;
}

.btn {
padding: 10px 24px;
font-size: 14px;
}

.feature-card,
.resource-card,
.product-card {
padding: 20px;
}

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

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

.hero {
padding: 30px 0;
}

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

.hero-description {
font-size: 0.9rem;
}

.hero-badge {
font-size: 11px;
padding: 5px 14px;
}

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

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

.btn {
padding: 10px 20px;
font-size: 13px;
}

.hero-image-wrapper {
max-width: 220px;
}

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1rem; }

.feature-card,
.resource-card,
.product-card,
.cta-card {
padding: 15px;
}

.approach-item,
.practice-item,
.tip-card {
padding: 15px;
}

.intro-section,
.features-section,
.approach-section,
.resources-section,
.cta-section,
.content-section,
.practices-section,
.products-section,
.comparison-section,
.tips-section,
.contact-main,
.map-section,
.policy-content {
padding: 30px 0;
}

.page-hero,
.contact-hero,
.policy-hero {
padding: 30px 0;
}

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

}