* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #7595c4, #ffffff);
  background-attachment: fixed;
  color: #333;
  padding: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 750px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, #f3d078 0%, #c5912d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-section .subtitle {
  font-size: 1.15rem;
  color: #1a2536;
  line-height: 1.5;
  max-width: 400px;
}

.icon-box i {
  font-size: 2.5rem;
  color: #2b3a67;
}

.contact-box {
  background: rgba(253, 250, 243, 0.9);
  border: 1px solid #e0d0b0;
  border-radius: 12px;
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.contact-link {
  color: #b38122;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.contact-link:hover {
  text-decoration: underline;
}

.logo-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 25px auto; /* Centra il contenitore e dà distacco dalla card */
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 500px;  /* Dimensione massima per non farlo sgranare o ingrandire troppo */
  height: auto;       /* Mantiene le proporzioni originali dell'immagine */
  max-height: 110px;  /* Evita che occupi troppa altezza verticale */
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

