body {
  font-family: Arial, sans-serif;
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
  color: #222;
  background: #fafafa;
}

header {
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 5px;
}

h2 {
  margin-top: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

nav {
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin-right: 12px;
  text-decoration: none;
  color: #0645ad;
}

nav a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 35px;
}

a {
  color: #0645ad;
}

footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.9em;
  color: #666;
}

/* DOCUMENTARIES */

.doc-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.doc-item img {
  width: 200px;
  height: auto;
  display: block;
}

.doc-item a {
  text-decoration: none;
}

.doc-text {
  flex: 1;
}

.doc-text h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.doc-text p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

/* ART */

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.art-grid img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  border: none;
  background: none;
}

/* CONTACT */

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 1px;
}

/* SUPPORT */

.support-list {
  list-style: none;
  padding-left: 0;
}

.support-list li {
  margin-bottom: 12px;
  word-break: break-all;
}

.donate-grid {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.donate-grid img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* PROJECTS */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.projects-grid .doc-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.projects-grid .doc-item a {
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .doc-item {
    flex-direction: column;
  }

  .doc-item img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .art-grid {
    grid-template-columns: 1fr;
  }

  .donate-grid {
    flex-wrap: wrap;
  }
}