:root {
--primary-blue: #00A8E8;
--secondary-turquoise: #20B2AA;
--graphite: #2C3E50;
--text-dark: #34495E;
--text-light: #7F8C8D;
--white: #FFFFFF;
--light-gray: #F8F9FA;
--border-color: #E1E8ED;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

* {
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;
background: var(--white);
overflow-x: hidden;
}

.container-fluid {
width: 100%;
padding: 0 2rem;
}

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

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

.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}

.brand-section {
display: flex;
align-items: center;
gap: 1rem;
}

.site-logo {
border-radius: 50%;
object-fit: cover;
}

.brand-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--graphite);
}

.main-navigation ul {
display: flex;
list-style: none;
gap: 2rem;
}

.main-navigation a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.main-navigation a:hover,
.main-navigation a.nav-active {
color: var(--primary-blue);
}

.main-navigation a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-blue);
transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.nav-active::after {
width: 100%;
}

.clock-widget {
font-weight: 600;
color: var(--primary-blue);
font-size: 1rem;
min-width: 150px;
text-align: right;
}

.hero-section {
background: linear-gradient(135deg, rgba(0,168,232,0.1) 0%, rgba(32,178,170,0.1) 100%);
padding: 5rem 0;
text-align: center;
}

.hero-title {
font-size: 3rem;
font-weight: 700;
color: var(--graphite);
margin-bottom: 1.5rem;
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--text-light);
margin-bottom: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.cta-button {
display: inline-block;
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-turquoise));
color: var(--white);
padding: 1rem 2.5rem;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.slider-wrapper {
padding: 4rem 0;
background: var(--white);
}

.image-slider {
position: relative;
max-width: 900px;
margin: 0 auto;
overflow: hidden;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.slide-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

.slide-item {
min-width: 100%;
}

.slide-item img {
width: 100%;
height: auto;
display: block;
}

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: var(--white);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
font-size: 1.5rem;
transition: all 0.3s ease;
z-index: 10;
}

.slider-btn:hover {
background: rgba(0,0,0,0.8);
}

.prev-btn {
left: 20px;
}

.next-btn {
right: 20px;
}

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

.section-heading {
text-align: center;
font-size: 2.5rem;
color: var(--graphite);
margin-bottom: 3rem;
font-weight: 700;
}

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

.feature-card {
background: var(--white);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}

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

.icon-holder {
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
color: var(--graphite);
margin-bottom: 1rem;
}

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

.info-section {
padding: 5rem 0;
background: var(--white);
}

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

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

.link-button {
display: inline-block;
margin-top: 1rem;
padding: 0.8rem 2rem;
background: var(--primary-blue);
color: var(--white);
text-decoration: none;
border-radius: 25px;
font-weight: 600;
transition: all 0.3s ease;
}

.link-button:hover {
background: var(--secondary-turquoise);
transform: translateY(-2px);
}

.info-image img {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

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

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

.footer-col h4 {
margin-bottom: 1.5rem;
font-size: 1.3rem;
color: var(--white);
}

.footer-col p {
line-height: 1.8;
color: rgba(255,255,255,0.8);
margin-bottom: 0.8rem;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 0.8rem;
}

.footer-col a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-col a:hover {
color: var(--primary-blue);
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}

.social-links a {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.1);
border-radius: 50%;
transition: all 0.3s ease;
}

.social-links a:hover {
background: var(--primary-blue);
transform: translateY(-3px);
}

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

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

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

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

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

.cookie-content h3 {
margin-bottom: 0.8rem;
color: var(--graphite);
}

.cookie-content p {
margin-bottom: 1.2rem;
color: var(--text-light);
}

.cookie-content a {
color: var(--primary-blue);
}

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

.cookie-buttons button {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.btn-accept:hover {
background: var(--secondary-turquoise);
}

.btn-customize {
background: var(--light-gray);
color: var(--graphite);
}

.btn-customize:hover {
background: var(--border-color);
}

.btn-decline {
background: transparent;
color: var(--text-light);
border: 2px solid var(--border-color);
}

.btn-decline:hover {
border-color: var(--graphite);
color: var(--graphite);
}

.page-header {
background: linear-gradient(135deg, rgba(0,168,232,0.08) 0%, rgba(32,178,170,0.08) 100%);
padding: 3.5rem 0;
text-align: center;
margin-bottom: 3rem;
}

.page-title {
font-size: 2.8rem;
font-weight: 700;
color: var(--graphite);
margin-bottom: 1rem;
}

.page-description {
font-size: 1.2rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}

@media (max-width: 1024px) {
.info-content {
grid-template-columns: 1fr;
}
.nav-wrapper {
flex-direction: column;
gap: 1rem;
}
}

@media (max-width: 768px) {
.container-fluid,
.container-main {
padding: 0 1rem;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.main-navigation ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.features-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.section-heading {
font-size: 2rem;
}
.slider-btn {
width: 40px;
height: 40px;
font-size: 1.2rem;
}
.prev-btn {
left: 10px;
}
.next-btn {
right: 10px;
}
.cookie-buttons {
flex-direction: column;
}
.cookie-buttons button {
width: 100%;
}
}

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