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

:root {
--primary-color: #2d5a7b;
--secondary-color: #4a9eba;
--accent-color: #f4a261;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e0e0e0;
--success-color: #52b788;
--error-color: #e63946;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', 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;
}

p {
margin-bottom: 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;
}

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 15px 0;
position: relative;
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: 'Sora', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--bg-white);
}

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

.nav a {
color: var(--bg-white);
font-size: 14px;
font-weight: 500;
padding: 8px 0;
position: relative;
}

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

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

.nav a:hover::after {
width: 100%;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--bg-white);
font-size: 1.5rem;
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, #1a4d6f 0%, #2d5a7b 50%, #4a9eba 100%);
padding: 0;
position: relative;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

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

.hero-shape {
position: absolute;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

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

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

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

@keyframes float {
0%, 100% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(30px, -30px) rotate(120deg);
}
66% {
transform: translate(-20px, 20px) rotate(240deg);
}
}

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

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

.hero-content {
color: var(--bg-white);
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(244, 162, 97, 0.2);
border: 1px solid rgba(244, 162, 97, 0.4);
padding: 8px 16px;
border-radius: 50px;
margin-bottom: 25px;
font-size: 13px;
font-weight: 600;
backdrop-filter: blur(10px);
}

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

.hero-content h1 {
font-size: 3rem;
margin-bottom: 20px;
line-height: 1.2;
color: var(--bg-white);
}

.hero-content p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

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

.btn-outline {
display: inline-block;
background-color: transparent;
color: var(--bg-white);
border: 2px solid rgba(255, 255, 255, 0.3);
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

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

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

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent-color);
line-height: 1;
margin-bottom: 5px;
font-family: 'Sora', sans-serif;
}

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

.hero-visual {
position: relative;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
}

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

.hero-card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

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

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

.hero-card.card-1 i {
color: #f4a261;
}

.hero-card.card-2 {
top: 0;
right: 50px;
animation-delay: 1.5s;
}

.hero-card.card-2 i {
color: #4a9eba;
}

.hero-card.card-3 {
bottom: 0;
left: 50px;
animation-delay: 3s;
}

.hero-card.card-3 i {
color: #52b788;
}

.hero-card.card-4 {
bottom: 0;
right: 50px;
animation-delay: 4.5s;
}

.hero-card.card-4 i {
color: #e76f51;
}

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

.btn-primary {
display: inline-block;
background-color: var(--accent-color);
color: var(--bg-white);
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-primary:hover {
background-color: #e76f51;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
display: inline-block;
background-color: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
padding: 10px 28px;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

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

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

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

.feature-card {
background-color: var(--bg-white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.feature-icon {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-size: 1.5rem;
}

.feature-card h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.2rem;
}

.feature-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.about {
padding: 60px 0;
}

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

.about-image img {
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
color: var(--primary-color);
margin-bottom: 20px;
}

.about-text p {
color: var(--text-light);
margin-bottom: 15px;
}

.products {
padding: 60px 0;
background-color: var(--bg-light);
text-align: center;
}

.products h2 {
color: var(--primary-color);
margin-bottom: 40px;
}

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

.product-card {
background-color: var(--bg-white);
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}

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

.product-content h3 {
color: var(--primary-color);
margin-bottom: 15px;
font-size: 1.2rem;
}

.product-content p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 20px;
}

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

.btn-product {
display: inline-block;
background-color: var(--primary-color);
color: var(--bg-white);
padding: 10px 25px;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

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

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

.info-item h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.2rem;
}

.info-item p {
color: var(--text-light);
font-size: 14px;
}

.timeline-section {
padding: 80px 0;
background: linear-gradient(135deg, rgba(45, 90, 123, 0.03) 0%, rgba(74, 158, 186, 0.05) 100%);
}

.timeline-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 60px;
font-size: 2rem;
}

.timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
transform: translateX(-50%);
}

.timeline-item {
position: relative;
margin-bottom: 50px;
display: flex;
align-items: center;
gap: 30px;
}

.timeline-item:nth-child(odd) {
flex-direction: row;
}

.timeline-item:nth-child(even) {
flex-direction: row-reverse;
}

.timeline-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-size: 1.8rem;
box-shadow: 0 5px 20px rgba(45, 90, 123, 0.3);
z-index: 2;
position: relative;
flex-shrink: 0;
}

.timeline-content {
background-color: var(--bg-white);
padding: 25px 30px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
flex: 1;
max-width: calc(50% - 65px);
transition: all 0.3s ease;
}

.timeline-content:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.timeline-content h3 {
color: var(--primary-color);
margin-bottom: 10px;
font-size: 1.3rem;
}

.timeline-content p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.6;
}

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

.benefits-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
font-size: 2rem;
}

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

.benefit-card {
background: linear-gradient(135deg, rgba(45, 90, 123, 0.02) 0%, rgba(74, 158, 186, 0.05) 100%);
padding: 35px 30px;
border-radius: 10px;
border-left: 4px solid var(--accent-color);
transition: all 0.3s ease;
position: relative;
}

.benefit-card:hover {
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
border-left-width: 6px;
}

.benefit-number {
font-size: 3rem;
font-weight: 700;
color: rgba(45, 90, 123, 0.1);
line-height: 1;
margin-bottom: 15px;
font-family: 'Sora', sans-serif;
}

.benefit-card h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.2rem;
}

.benefit-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.6;
}

.interactive-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
position: relative;
overflow: hidden;
}

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

.interactive-section::after {
content: '';
position: absolute;
bottom: -30%;
left: -5%;
width: 400px;
height: 400px;
background: rgba(255, 255, 255, 0.03);
border-radius: 50%;
}

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

.interactive-content {
color: var(--bg-white);
}

.interactive-content h2 {
color: var(--bg-white);
margin-bottom: 20px;
font-size: 2rem;
}

.interactive-content p {
font-size: 1.05rem;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.7;
}

.interactive-features {
margin-bottom: 35px;
}

.feature-point {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
font-size: 15px;
}

.feature-point i {
color: var(--accent-color);
font-size: 1.2rem;
}

.visual-circle {
position: relative;
width: 350px;
height: 350px;
margin: 0 auto;
}

.circle-segment {
position: absolute;
width: 120px;
height: 120px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: var(--bg-white);
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
animation: pulse 3s infinite ease-in-out;
}

.circle-segment:hover {
transform: scale(1.1);
background: rgba(255, 255, 255, 0.25);
}

.segment-1 {
top: 0;
left: 50%;
transform: translateX(-50%);
animation-delay: 0s;
}

.segment-2 {
top: 50%;
right: 0;
transform: translateY(-50%);
animation-delay: 0.75s;
}

.segment-3 {
bottom: 0;
left: 50%;
transform: translateX(-50%);
animation-delay: 1.5s;
}

.segment-4 {
top: 50%;
left: 0;
transform: translateY(-50%);
animation-delay: 2.25s;
}

.circle-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background: rgba(244, 162, 97, 0.9);
backdrop-filter: blur(10px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: var(--bg-white);
box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
animation: heartbeat 2s infinite ease-in-out;
}

@keyframes pulse {
0%, 100% {
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
50% {
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
}

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

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

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

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

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

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

.content-wrapper.reverse {
direction: rtl;
}

.content-wrapper.reverse > * {
direction: ltr;
}

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

.content-text p {
color: var(--text-light);
margin-bottom: 15px;
}

.content-image img {
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.features-alt {
padding: 60px 0;
background-color: var(--bg-light);
}

.features-alt h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

.info-detailed {
padding: 60px 0;
}

.info-detailed h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

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

.info-col h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.1rem;
}

.info-col p {
color: var(--text-light);
font-size: 14px;
}

.weather-factors {
padding: 60px 0;
background-color: var(--bg-light);
}

.weather-factors h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

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

.factor-card {
background-color: var(--bg-white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.factor-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}

.factor-header i {
font-size: 1.8rem;
color: var(--secondary-color);
}

.factor-header h3 {
color: var(--primary-color);
margin-bottom: 0;
font-size: 1.1rem;
}

.factor-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

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

.adaptation-tips h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

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

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

.tip-item h3 {
color: var(--primary-color);
margin-bottom: 10px;
font-size: 1.1rem;
}

.tip-item p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

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

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

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

.contact-wrapper {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
}

.contact-form-container h2 {
color: var(--primary-color);
margin-bottom: 25px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 5px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

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

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

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

.btn-submit {
background-color: var(--accent-color);
color: var(--bg-white);
padding: 12px 30px;
border: none;
border-radius: 5px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Space Grotesk', sans-serif;
}

.btn-submit:hover {
background-color: #e76f51;
transform: translateY(-2px);
}

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

.contact-info h3 {
color: var(--primary-color);
margin-bottom: 25px;
}

.contact-info .info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

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

.contact-info .info-item strong {
display: block;
color: var(--text-dark);
margin-bottom: 5px;
font-size: 14px;
}

.contact-info .info-item p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

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

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thank-you-main,
.error-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

.thank-you-section,
.error-section {
padding: 60px 0;
text-align: center;
}

.thank-you-content,
.error-content {
max-width: 600px;
margin: 0 auto;
}

.thank-you-icon {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 25px;
}

.thank-you-content h1 {
color: var(--primary-color);
margin-bottom: 20px;
}

.thank-you-content p {
color: var(--text-light);
font-size: 1.1rem;
margin-bottom: 30px;
}

.thank-you-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--primary-color);
line-height: 1;
margin-bottom: 20px;
}

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

.error-content p {
color: var(--text-light);
font-size: 1.1rem;
margin-bottom: 30px;
}

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

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

.policy-hero h1 {
font-size: 2.2rem;
margin-bottom: 10px;
}

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

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
color: var(--primary-color);
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-text p {
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.7;
}

.footer {
background-color: var(--text-dark);
color: var(--bg-white);
padding: 25px 0;
}

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

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

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

.footer-links a {
color: var(--bg-white);
font-size: 13px;
transition: color 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(26, 26, 26, 0.95);
color: var(--bg-white);
padding: 20px;
z-index: 1000;
display: none;
}

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

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

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

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

.btn-accept {
background-color: var(--accent-color);
color: var(--bg-white);
padding: 10px 25px;
border: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Space Grotesk', sans-serif;
}

.btn-accept:hover {
background-color: #e76f51;
}

.popup-actions a {
color: var(--bg-white);
font-size: 14px;
text-decoration: underline;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background-color: var(--primary-color);
flex-direction: column;
padding: 30px;
gap: 15px;
transition: left 0.3s ease;
z-index: 999;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: block;
}

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

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

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

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

.hero-stats {
gap: 25px;
justify-content: center;
}

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

.hero-visual {
height: 350px;
}

.hero-card {
padding: 20px;
}

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

.hero-card.card-1,
.hero-card.card-3 {
left: 20px;
}

.hero-card.card-2,
.hero-card.card-4 {
right: 20px;
}

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

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

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

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

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

h1 {
font-size: 1.7rem;
}

h2 {
font-size: 1.4rem;
}

h3 {
font-size: 1.1rem;
}

.about-wrapper,
.content-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.features-grid,
.products-grid,
.factors-grid,
.tips-grid {
grid-template-columns: 1fr;
}

.info-grid,
.info-columns {
grid-template-columns: 1fr;
}

.timeline::before {
left: 35px;
}

.timeline-item {
flex-direction: row !important;
padding-left: 0;
}

.timeline-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
margin-left: 5px;
}

.timeline-content {
max-width: calc(100% - 95px);
margin-left: 0;
}

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

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

.visual-circle {
width: 300px;
height: 300px;
}

.circle-segment {
width: 100px;
height: 100px;
font-size: 2rem;
}

.circle-center {
width: 80px;
height: 80px;
font-size: 2rem;
}

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

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

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

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

.btn-accept {
width: 100%;
}
}

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

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

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

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

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

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
width: 100%;
text-align: center;
}

.hero-stats {
flex-direction: column;
gap: 20px;
align-items: center;
}

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

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

.hero-visual {
height: 300px;
}

.hero-card {
padding: 15px;
}

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

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

.hero-card.card-1,
.hero-card.card-3 {
left: 10px;
}

.hero-card.card-2,
.hero-card.card-4 {
right: 10px;
}

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

.features,
.about,
.products,
.info-section,
.timeline-section,
.benefits-section,
.interactive-section,
.adaptation-strategies,
.seasonal-insights,
.weather-science,
.weather-wellness,
.cta-section,
.content-section,
.features-alt,
.info-detailed,
.weather-factors,
.adaptation-tips,
.contact-section,
.policy-content {
padding: 40px 0;
}

.wellness-grid,
.strategies-grid {
grid-template-columns: 1fr;
}

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

.cta-actions .btn-primary,
.cta-actions .btn-outline {
width: 100%;
}

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

.timeline-section h2,
.benefits-section h2,
.interactive-content h2 {
font-size: 1.5rem;
}

.timeline::before {
left: 25px;
}

.timeline-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.timeline-content {
padding: 20px;
max-width: calc(100% - 80px);
}

.timeline-content h3 {
font-size: 1.1rem;
}

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

.benefit-number {
font-size: 2.5rem;
}

.visual-circle {
width: 250px;
height: 250px;
}

.circle-segment {
width: 80px;
height: 80px;
font-size: 1.5rem;
border-radius: 12px;
}

.circle-center {
width: 70px;
height: 70px;
font-size: 1.5rem;
}

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

.feature-point {
font-size: 14px;
}

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

.thank-you-icon {
font-size: 3rem;
}
}

@media (min-width: 320px) and (max-width: 374px) {
body {
font-size: 13px;
}

.container {
padding: 0 12px;
}

.logo {
font-size: 1rem;
word-break: break-word;
}

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

.hero .container {
padding: 40px 12px;
}

.hero-content h1 {
font-size: 1.25rem;
line-height: 1.3;
}

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

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

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
padding: 10px 18px;
font-size: 13px;
}

.hero-visual {
height: 220px;
}

.hero-card {
padding: 10px;
}

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

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

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

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

.timeline::before {
left: 18px;
}

.timeline-icon {
width: 36px;
height: 36px;
font-size: 0.9rem;
}

.timeline-content {
padding: 12px;
max-width: calc(100% - 60px);
font-size: 13px;
}

.timeline-content h3 {
font-size: 1rem;
}

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

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

.visual-circle {
width: 180px;
height: 180px;
}

.circle-segment {
width: 58px;
height: 58px;
font-size: 1.1rem;
border-radius: 8px;
}

.circle-center {
width: 50px;
height: 50px;
font-size: 1.1rem;
}

h1 {
font-size: 1.4rem;
}

h2 {
font-size: 1.2rem;
}

h3 {
font-size: 1.05rem;
}

.feature-card,
.product-card,
.factor-card,
.tip-item,
.strategy-card {
padding: 18px;
}

.feature-icon,
.strategy-icon {
width: 55px;
height: 55px;
font-size: 1.5rem;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-product {
padding: 9px 18px;
font-size: 13px;
}

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

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

.contact-hero h1 {
font-size: 1.4rem;
}

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

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

.checkbox-label {
font-size: 13px;
}

.error-code {
font-size: 3.5rem;
}

.thank-you-icon {
font-size: 2.5rem;
}

.policy-hero h1 {
font-size: 1.4rem;
}

.policy-text h2 {
font-size: 1.2rem;
}

.policy-text p {
font-size: 13px;
}

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

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

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

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

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

.features-grid,
.products-grid,
.benefits-grid,
.factors-grid,
.tips-grid,
.strategies-grid,
.wellness-grid {
grid-template-columns: 1fr;
gap: 18px;
}

.point-item {
padding: 15px;
flex-direction: column;
gap: 12px;
}

.point-item i {
font-size: 1.5rem;
margin-top: 0;
}

.stat-box {
padding: 18px;
}

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

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

.wellness-item i {
font-size: 2.2rem;
}

.factor-header i {
font-size: 1.5rem;
}

.contact-info .info-item i {
font-size: 1.1rem;
}

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

.interactive-content p {
font-size: 0.9rem;
}

.feature-point {
font-size: 13px;
}

.feature-point i {
font-size: 1rem;
}

.cta-text h2 {
font-size: 1.3rem;
}

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

.adaptation-strategies {
padding: 60px 0;
background-color: var(--bg-light);
}

.adaptation-strategies h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

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

.strategy-card {
background-color: var(--bg-white);
padding: 30px;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.strategy-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.strategy-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: var(--bg-white);
font-size: 1.8rem;
}

.strategy-card h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.2rem;
}

.strategy-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.6;
}

.seasonal-insights {
padding: 60px 0;
}

.insights-wrapper {
max-width: 900px;
margin: 0 auto;
}

.insight-content h2 {
color: var(--primary-color);
margin-bottom: 20px;
font-size: 1.8rem;
}

.insight-content > p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.7;
}

.insight-points {
display: flex;
flex-direction: column;
gap: 20px;
}

.point-item {
display: flex;
gap: 20px;
align-items: flex-start;
padding: 20px;
background-color: var(--bg-light);
border-radius: 8px;
transition: all 0.3s ease;
}

.point-item:hover {
background-color: rgba(74, 158, 186, 0.1);
transform: translateX(5px);
}

.point-item i {
font-size: 2rem;
color: var(--secondary-color);
flex-shrink: 0;
margin-top: 5px;
}

.point-item h4 {
color: var(--primary-color);
margin-bottom: 5px;
font-size: 1.1rem;
}

.point-item p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.weather-science {
padding: 60px 0;
background-color: var(--bg-light);
}

.weather-science h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

.science-content {
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
}

@media (min-width: 769px) {
.science-content {
flex-direction: row;
}

.science-text {
flex: 1.5;
}

.science-stats {
flex: 1;
}
}

.science-text p {
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.7;
}

.science-stats {
display: flex;
flex-direction: column;
gap: 20px;
}

.stat-box {
background-color: var(--bg-white);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
border-top: 3px solid var(--accent-color);
}

.stat-value {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 8px;
font-family: 'Sora', sans-serif;
}

.stat-desc {
font-size: 13px;
color: var(--text-light);
line-height: 1.4;
}

.weather-wellness {
padding: 60px 0;
}

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

.wellness-item {
text-align: center;
padding: 30px 20px;
}

.wellness-item i {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 20px;
}

.wellness-item h3 {
color: var(--primary-color);
margin-bottom: 12px;
font-size: 1.2rem;
}

.wellness-item p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.6;
}

.cta-section {
padding: 60px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
position: relative;
overflow: hidden;
}

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

.cta-wrapper {
text-align: center;
color: var(--bg-white);
position: relative;
z-index: 2;
}

.cta-text h2 {
color: var(--bg-white);
margin-bottom: 15px;
font-size: 2rem;
}

.cta-text p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
}

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