:root {
    /* Color Palette - Neumorphic Style */
    --bg-color: #e0e5ec;
    --text-color: #4a4a4a;
    --primary-color: #8da4b7;
    --primary-dark: #708596;
    --accent-color: #9cb3c5;
    
    /* Neumorphic Shadows */
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    
    --shadow-out: 9px 9px 16px var(--shadow-dark), -9px -9px 16px var(--shadow-light);
    --shadow-in: inset 6px 6px 10px var(--shadow-dark), inset -6px -6px 10px var(--shadow-light);
    
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--bg-color);
    color: var(--primary-dark);
    box-shadow: var(--shadow-out);
}

.btn-primary:hover {
    box-shadow: var(--shadow-in);
    color: var(--primary-color);
    transform: translateY(1px);
}

.btn-primary:active {
    box-shadow: var(--shadow-in);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--text-color);
    box-shadow: var(--shadow-out);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-in);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.logo-img {
    height: 40px;
    width: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

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

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-out);
    background-color: var(--bg-color);
}

/* Blocks */
.block {
    padding: 80px 0;
}

.block-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.block-container.reverse {
    flex-direction: row-reverse;
}

.block-image {
    flex: 1;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-out);
    background-color: var(--bg-color);
}

.block-text {
    flex: 1;
}

.block-light {
    background-color: var(--bg-color);
}

.block-dark {
    background-color: #d1d9e6; /* Slightly darker for contrast */
}

/* Benefits List */
.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefits-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Reviews */
.review {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-out);
    margin-bottom: 30px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    text-align: right;
    color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-out);
    background-color: var(--bg-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-out);
    transition: all 0.3s ease;
}

.social-link:hover {
    box-shadow: var(--shadow-in);
    transform: scale(0.95);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-in);
    font-family: inherit;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #d1d9e6;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

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

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-out);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.5);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-in);
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container, 
    .block-container, 
    .contact-container {
        flex-direction: column;
    }
    
    .block-container.reverse {
        flex-direction: column;
    }
    
    .hero-image, .block-image {
        order: -1;
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .contact-info, .contact-form-wrapper {
        width: 100%;
    }
}
