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

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.background-figure {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
  margin: 0;
  pointer-events: none;
}

.background-figure img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.45);
  display: block;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  position: absolute; 
  top: 20px;
  left: 20px;
  z-index: 5; 
}

.home-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#header {
  text-align: center;
  padding-top: 30px;
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  width: 100%;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  padding: 20px 40px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-grow: 1;
}

.analysis-section {
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  background-color: rgba(255,255,255,0.38);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.analysis-section:hover {
  box-shadow: 0 8px 32px rgba(20,86,138,0.22);
  transform: translateY(-4px);
}

.analysis-section.full-width-section {
  grid-column: 1 / -1;
  max-width: 100%;
  background-color: rgba(255,255,255,0.4);
}
.analysis-section.full-width-section h2 {
  margin-top: 0;
}


.analysis-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.13);
}

.analysis-section h2 {
  color: #14568A;
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 700;
}

.analysis-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 1em;
}
.analysis-section p:last-child {
  margin-bottom: 0;
}
.analysis-section p a {
    color: #14568A;
    font-weight: bold;
    text-decoration: none;
}
.analysis-section p a:hover {
    text-decoration: underline;
    color: #1f85d1;
}

#footer {
  text-align: center;
  background-color: rgba(10, 20, 35, 0.35);
  color: white;
  padding: 25px 15px;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  margin-top: auto;
}

#footer p a {
  color: #A6D4FF;
  text-decoration: none;
  transition: color 0.3s;
}
#footer p a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .home-button {
    margin: 20px 0 0 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  #header {
    padding-top: 20px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .report-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 30px 20px;
    gap: 24px;
  }

  .analysis-section {
    padding: 24px 18px;
    border-radius: 12px;
  }
  .analysis-section h2 {
    font-size: 1.5rem;
  }
  .analysis-section p {
    font-size: 0.95rem;
  }

  #footer {
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .home-button {
    margin: 15px 0 0 15px;
    padding: 7px 12px;
    font-size: 0.85rem;
  }

  #header {
    padding-top: 15px;
    font-size: 1.6rem;
    margin-top: 50px;

  }

  .report-grid {
    padding: 15px 15px 25px 15px;
    gap: 20px;
  }

  .analysis-section {
    padding: 20px 15px;
  }
  .analysis-section h2 {
    font-size: 1.4rem;
  }
  .analysis-section p {
    font-size: 0.9rem;
  }
}