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

:root {
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-muted: #555;
  --color-accent: #5990c8;
  --color-accent-dark: #2c5a85;
  --color-accent-light: #7baad6;
  --color-border: #e2e2e2;
  --color-card-bg: #fff;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 960px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: var(--color-accent-light);
}

/* Header & Nav */
.site-header {
  background: var(--color-accent-dark);
  color: #fff;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-header a {
  color: #fff;
}

.site-header a:hover,
.site-header a:focus {
  color: #ccd;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 36px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: #f0f0f0;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 2rem;
  text-align: center;
}

/* Venture Cards */
.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.venture-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.venture-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

img.venture-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  object-position: left;
  border-radius: 8px;
  margin-bottom: 1rem;
}

div.venture-logo {
  width: 120px;
  height: 60px;
  background: var(--color-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-muted);
}

.venture-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.venture-status {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.venture-status strong {
  color: var(--color-text);
}

.venture-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.venture-card p + p {
  margin-top: 0.5rem;
}

.venture-note {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-top: 0.75rem;
}

.lang-switch {
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Contact */
.contact {
  text-align: center;
}

.contact-info {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-info a {
  color: var(--color-accent);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--color-accent-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: #fff;
  margin: 0 0.75rem;
}

.footer-links {
  margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-content {
  padding: 3rem 0;
}

.legal-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.25rem;
  }

  .site-header .container {
    flex-direction: column;
    text-align: center;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .venture-grid {
    grid-template-columns: 1fr;
  }
}
