:root {
    --bg-color: #FAFAFA;
    --text-main: #2D3748;
    --text-light: #718096;
    --accent: #805AD5; /* Lavender/Purple */
    --accent-light: #E9D8FD;
    --highlight: #B794F4;
    --border-color: #2D3748;
    --shadow: 4px 4px 0px #2D3748;
    --radius: 12px;
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'DM Serif Display', serif;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--text-main);
}

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
}

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

/* UI Components (Neobrutalism Lite) */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 1rem;
    transform: translate(-1px, -1px);
}

.btn:active, .btn:hover {
    transform: translate(2px, 2px);
    box-shadow: none;
}

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

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
}

/* Header */
.site-header {
    padding: 24px 0;
    border-bottom: 2px solid var(--border-color);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
    font-weight: 400; /* Italic or specific style if needed */
    font-style: italic;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.nav-menu a {
    font-weight: 700;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-color) 100%);
    text-align: center;
}

.hero-layout h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-layout p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Blog Grid */
.blog-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: left;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

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

.card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
}

.card-img {
    height: 220px;
    overflow: hidden;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    transition: transform 0.5s;
}

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

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Newsletter - Special Style */
.newsletter-section {
    background-color: var(--accent-light);
    padding: 80px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.newsletter-box {
    background: white;
    padding: 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    background-color: #FAFAFA;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: left;
}

.checkbox-wrapper input {
    margin-top: 4px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: white;
    padding: 60px 0 24px;
    border-top: 2px solid var(--border-color);
}

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

.footer-col h4 {
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-box {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 350px;
    background: white;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 24px;
    border-radius: var(--radius);
    z-index: 999;
    display: none;
}

/* Mobile Adaptation (Protocol Compliant) */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-bottom: 2px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        gap: 20px;
        align-items: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-layout h1 {
        font-size: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        padding: 24px;
    }
    
    .cookie-box {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 20px;
    }
}
