:root {
--primary-color: #1a5f7a;
--secondary-color: #159895;
--accent-color: #52b788;
--light-green: #95d5b2;
--background-light: #f8f9fa;
--text-dark: #2d3436;
--text-light: #636e72;
--white: #ffffff;
--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
--transition: all 0.3s ease;
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--text-dark);
line-height: 1.6;
overflow-x: hidden;
}

.container-main {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.main-header {
background: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.navigation-primary {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
max-width: 1400px;
margin: 0 auto;
}

.logo-container {
flex-shrink: 0;
}

.site-logo {
height: 60px;
width: auto;
object-fit: contain;
}

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

.nav-menu li a {
text-decoration: none;
color: var(--text-dark);
font-weight: 600;
font-size: 1.05rem;
transition: var(--transition);
position: relative;
}

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

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

.nav-menu li a:hover,
.nav-menu li a.active-link {
color: var(--accent-color);
}

.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.menu-toggle span {
width: 30px;
height: 3px;
background: var(--primary-color);
transition: var(--transition);
}

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

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

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

.hero-section {
position: relative;
height: 600px;
background: linear-gradient(135deg, rgba(26, 95, 122, 0.9), rgba(21, 152, 149, 0.9)), url('images/1.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
text-align: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
}

.hero-content {
position: relative;
z-index: 10;
max-width: 900px;
padding: 2rem;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
display: inline-block;
}

.btn-primary {
background-color: var(--accent-color);
color: var(--white);
}

.btn-primary:hover {
background-color: var(--light-green);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(82, 183, 136, 0.4);
}

.btn-secondary {
background-color: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.btn-secondary:hover {
background-color: var(--white);
color: var(--primary-color);
transform: translateY(-3px);
}

.countdown-section {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
text-align: center;
}

.section-heading {
font-size: 2.8rem;
font-weight: 800;
margin-bottom: 3rem;
text-align: center;
position: relative;
padding-bottom: 1rem;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, var(--accent-color), var(--light-green));
border-radius: 2px;
}

.countdown-timer {
display: flex;
gap: 3rem;
justify-content: center;
flex-wrap: wrap;
}

.time-block {
display: flex;
flex-direction: column;
align-items: center;
min-width: 120px;
}

.time-value {
font-size: 4rem;
font-weight: 800;
line-height: 1;
margin-bottom: 0.5rem;
}

.time-label {
font-size: 1.2rem;
text-transform: uppercase;
opacity: 0.9;
}

.features-section {
padding: 6rem 0;
background-color: var(--background-light);
}

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

.feature-card {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
}

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

.feature-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 1rem;
font-weight: 700;
}

.feature-card p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.feature-image {
width: 100%;
height: auto;
border-radius: 10px;
margin-top: 1rem;
}

.content-section-alt {
padding: 6rem 0;
background-color: var(--white);
}

.content-grid-two {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.content-block h3 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
font-weight: 700;
}

.content-block p {
color: var(--text-light);
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 1.5rem;
}

.styled-list {
list-style: none;
padding: 0;
}

.styled-list li {
padding: 0.8rem 0;
padding-left: 2rem;
position: relative;
color: var(--text-dark);
font-size: 1.05rem;
}

.styled-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-color);
font-weight: bold;
font-size: 1.3rem;
}

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

.cta-section {
padding: 6rem 0;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.cta-content-box {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: var(--white);
}

.cta-content-box h2 {
font-size: 2.8rem;
margin-bottom: 1.5rem;
font-weight: 800;
}

.cta-content-box p {
font-size: 1.2rem;
margin-bottom: 1.5rem;
line-height: 1.8;
opacity: 0.95;
}

.btn-cta-large {
display: inline-block;
background-color: var(--accent-color);
color: var(--white);
padding: 1.2rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.2rem;
margin-top: 1.5rem;
transition: var(--transition);
}

.btn-cta-large:hover {
background-color: var(--light-green);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(149, 213, 178, 0.4);
}

.disclaimer-text {
font-size: 0.9rem;
margin-top: 2rem;
opacity: 0.85;
font-style: italic;
}

.latest-posts-section {
padding: 6rem 0;
background-color: var(--background-light);
}

.posts-preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.post-preview-card {
background: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

.post-preview-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-hover);
}

.post-preview-card img {
width: 100%;
height: 250px;
object-fit: cover;
}

.post-preview-card h3 {
font-size: 1.5rem;
color: var(--primary-color);
margin: 1.5rem 1.5rem 1rem;
font-weight: 700;
line-height: 1.4;
}

.post-preview-card p {
color: var(--text-light);
padding: 0 1.5rem;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.read-more-link {
display: inline-block;
color: var(--accent-color);
padding: 0 1.5rem 1.5rem;
font-weight: 600;
text-decoration: none;
transition: var(--transition);
}

.read-more-link:hover {
color: var(--secondary-color);
transform: translateX(5px);
}

.view-all-posts {
text-align: center;
}

.main-footer {
background-color: var(--primary-color);
color: var(--white);
padding: 4rem 0 2rem;
}

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

.footer-column h4 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.footer-logo {
width: 150px;
height: auto;
margin-bottom: 1rem;
}

.footer-column p {
line-height: 1.8;
opacity: 0.9;
}

.company-registration {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}

.footer-links,
.footer-contact {
list-style: none;
}

.footer-links li,
.footer-contact li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--white);
text-decoration: none;
opacity: 0.9;
transition: var(--transition);
}

.footer-links a:hover {
opacity: 1;
color: var(--light-green);
padding-left: 5px;
}

.footer-contact li {
opacity: 0.9;
line-height: 1.7;
}

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

.cookie-banner {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
z-index: 10000;
padding: 2rem;
animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
font-size: 1rem;
}

.accept-btn {
background-color: var(--accent-color);
color: var(--white);
}

.accept-btn:hover {
background-color: var(--light-green);
transform: translateY(-2px);
}

.customize-btn {
background-color: var(--secondary-color);
color: var(--white);
}

.customize-btn:hover {
background-color: var(--primary-color);
transform: translateY(-2px);
}

.reject-btn {
background-color: #e0e0e0;
color: var(--text-dark);
}

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

.cookie-policy-link {
color: var(--accent-color);
text-decoration: underline;
font-size: 0.95rem;
}

.page-hero-small {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 5rem 0 3rem;
color: var(--white);
text-align: center;
}

.page-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1rem;
}

.page-subtitle {
font-size: 1.3rem;
opacity: 0.95;
}

@media (max-width: 992px) {
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
flex-direction: column;
background: var(--white);
width: 100%;
padding: 2rem;
box-shadow: var(--shadow);
transition: var(--transition);
gap: 1.5rem;
}

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

.menu-toggle {
display: flex;
}

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

.hero-subtitle {
font-size: 1.2rem;
}

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

.countdown-timer {
gap: 2rem;
}

.time-value {
font-size: 3rem;
}

.section-heading {
font-size: 2.2rem;
}
}

@media (max-width: 768px) {
.container-main {
padding: 0 1rem;
}

.navigation-primary {
padding: 1rem;
}

.hero-section {
height: 500px;
}

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

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

.cta-buttons {
flex-direction: column;
align-items: stretch;
}

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

.posts-preview-grid {
grid-template-columns: 1fr;
}

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

.time-block {
min-width: 80px;
}

.time-value {
font-size: 2.5rem;
}

.time-label {
font-size: 1rem;
}

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

.cookie-banner {
padding: 1.5rem 1rem;
}

.cookie-buttons {
flex-direction: column;
}

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

@media (max-width: 480px) {
.hero-title {
font-size: 1.6rem;
}

.section-heading {
font-size: 1.8rem;
}

.btn-primary,
.btn-secondary {
padding: 0.8rem 1.5rem;
font-size: 1rem;
}
}