:root {
    --primary-color: #2c3e50;
    --secondary-color: #555555;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-neutral: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition-base: all 0.3s ease;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-base);
}

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

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 82px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-base);
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.features-section,
.gallery-section,
.latest-posts-section,
.future-quote-section,
.checklist-section {
    padding: 96px 0;
}

.features-section h2,
.gallery-section h2,
.latest-posts-section h2,
.future-quote-section h2,
.checklist-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 64px;
    color: var(--text-dark);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.gallery-section {
    background: var(--bg-neutral);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(0,0,0,0.7);
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.future-quote-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.future-quote-section h2 {
    color: var(--text-light);
    margin-bottom: 32px;
}

.quote-box blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.quote-box cite {
    font-size: 1.1rem;
    opacity: 0.9;
}

.checklist-section {
    background: var(--bg-neutral);
}

.checklist-container {
    max-width: 900px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.checklist-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.checklist-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.checklist-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.checklist-content p {
    color: var(--secondary-color);
}

.posts-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.post-preview-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

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

.post-preview-content {
    padding: 24px;
}

.post-preview-content h3 {
    margin-bottom: 12px;
}

.post-preview-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.post-preview-content h3 a:hover {
    color: var(--accent-color);
}

.post-meta {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.post-preview-content p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 48px;
}

.main-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 64px 0 24px;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.footer-description {
    margin-bottom: 24px;
    line-height: 1.7;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 16px;
}

.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%;
    color: var(--text-light);
    transition: var(--transition-base);
}

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

.footer-column h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: center;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cookie-text p {
    margin-bottom: 8px;
    color: var(--secondary-color);
    line-height: 1.6;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: #2980b9;
}

.cookie-customize {
    background: var(--bg-neutral);
    color: var(--text-dark);
}

.cookie-customize:hover {
    background: #e0e0e0;
}

.cookie-decline {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.cookie-decline:hover {
    background: var(--bg-neutral);
}

@media (max-width: 968px) {
    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        height: 500px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

@media (max-width: 640px) {
    .hero-section {
        height: 400px;
    }

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