* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #2c3e50;
background-color: #f8f9fa;
}

.main-header {
background: linear-gradient(135deg, #607d8b 0%, #1a3a52 100%);
padding: 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2rem 2rem;
}

.logo-section {
flex: 0 0 auto;
}

.logo-image {
height: 55px;
width: auto;
border-radius: 8px;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}

.primary-nav a {
color: #ffffff;
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 0;
}

.primary-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #d4a574;
transition: width 0.3s ease;
}

.primary-nav a:hover::after {
width: 100%;
}

.primary-nav a:hover {
color: #d4a574;
}

.hero-section {
background: linear-gradient(to right, #607d8b, #1a3a52);
color: white;
padding: 4rem 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-button {
display: inline-block;
background-color: #d4a574;
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
background-color: #c49564;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
}

.features-section {
background-color: #ffffff;
}

.features-section h2,
.products-section h2,
.statistics-section h2,
.testimonials-section h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: #1a3a52;
font-weight: 700;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.feature-card {
background: #f8f9fa;
padding: 2.5rem;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(26, 58, 82, 0.15);
border-color: #d4a574;
}

.feature-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1a3a52;
}

.feature-card p {
color: #5a6c7d;
line-height: 1.7;
}

.statistics-section {
background: linear-gradient(135deg, #1a3a52 0%, #607d8b 100%);
color: white;
}

.statistics-section h2 {
color: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.stat-box {
background: rgba(255,255,255,0.1);
padding: 2rem;
border-radius: 12px;
text-align: center;
backdrop-filter: blur(10px);
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: #d4a574;
margin-bottom: 0.5rem;
}

.stat-box p {
font-size: 1.1rem;
opacity: 0.9;
}

.chart-container {
background: white;
padding: 2rem;
border-radius: 12px;
text-align: center;
}

#marketChart {
max-width: 100%;
height: auto;
}

.products-section {
background-color: #f8f9fa;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
}

.product-item {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.product-item:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-item img {
width: 100%;
height: auto;
display: block;
}

.product-item h3 {
padding: 1.5rem;
font-size: 1.6rem;
color: #1a3a52;
}

.product-item p {
padding: 0 1.5rem 1.5rem;
color: #5a6c7d;
}

.testimonials-section {
background-color: #ffffff;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
}

.testimonial-card {
background: #f8f9fa;
padding: 2.5rem;
border-radius: 12px;
border-left: 4px solid #d4a574;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
color: #2c3e50;
line-height: 1.8;
font-size: 1.05rem;
}

.testimonial-author {
font-weight: 600;
color: #1a3a52;
}

.main-footer {
background: linear-gradient(135deg, #1a3a52 0%, #0f2537 100%);
color: white;
padding: 3rem 0 1rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-column h4 {
margin-bottom: 1.5rem;
font-size: 1.3rem;
color: #d4a574;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.8rem;
}

.footer-column a {
color: #e0e0e0;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column a:hover {
color: #d4a574;
}

.footer-column p {
color: #e0e0e0;
margin-bottom: 0.5rem;
line-height: 1.8;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: #b0b0b0;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to right, #1a3a52, #2c4a62);
color: white;
padding: 2rem;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
color: #d4a574;
}

.cookie-content p {
margin-bottom: 1rem;
line-height: 1.7;
}

.cookie-content a {
color: #d4a574;
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

.cookie-btn.accept {
background-color: #d4a574;
color: white;
}

.cookie-btn.accept:hover {
background-color: #c49564;
}

.cookie-btn.decline {
background-color: transparent;
color: white;
border: 2px solid white;
}

.cookie-btn.decline:hover {
background-color: rgba(255,255,255,0.1);
}

.cookie-btn.customize {
background-color: #607d8b;
color: white;
}

.cookie-btn.customize:hover {
background-color: #546e7a;
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1rem;
}
.primary-nav ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.hero-section {
grid-template-columns: 1fr;
padding: 2rem 1rem;
}
.hero-content h1 {
font-size: 2.5rem;
}
.features-grid,
.product-grid,
.testimonial-grid {
grid-template-columns: 1fr;
}
.footer-container {
grid-template-columns: 1fr;
text-align: center;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
