:root {
    --text-color: #1a1a1a;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --border-color: #e5e5e5;
    --font-main: 'Roboto', sans-serif;
    --font-code: 'Roboto Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 18px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */
.minimal-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 4rem 0;
}

.text-block {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: #333;
}

/* IMAGES */
.image-container {
    margin: 2rem auto;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #ddd; /* Placeholder color */
}

/* LISTS */
.use-case-list {
    list-style: none;
}

.use-case-list li {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.use-case-list li:last-child {
    border-bottom: none;
}

/* FORM */
.contact-minimal {
    padding: 4rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.simple-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.simple-form input, 
.simple-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.simple-form input:focus,
.simple-form textarea:focus {
    border-color: var(--accent);
}

.simple-form button {
    background-color: var(--text-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

.simple-form button:hover {
    background-color: var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--accent);
}

/* FOOTER */
.minimal-footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

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

.footer-grid h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-grid ul li {
    margin-bottom: 0.5rem;
}

.footer-grid a {
    text-decoration: none;
    color: #555;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

.cookie-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border: none;
    background-color: var(--text-color);
    color: var(--white);
    margin-left: 0.5rem;
}

.cookie-buttons button.outline {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    nav a {
        margin: 0 0.75rem;
    }
}