/* Reset base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

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

/* HEADER */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
}

.logo {
  height: 140px;
  width: auto;
}

/* MAIN */
.site-main {
  background-color: #f4f4f4; /* colore del resto della pagina */
  min-height: 60vh;
}

section {
  font-size: 20px;
}


.site-main h1 {
  margin-top: 0;
  color: #5a2d82; /* viola coerente col logo */
}

.site-main h2 {
  margin-top: 40px;
  color: #5a2d82;
}

/* FOOTER */
.site-footer {
  background-color: #1f2933;
  color: #ffffff;
  font-size: 0.9em;
}

.site-footer p {
  margin: 0;
}

.video-section {
  margin-top: 60px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

