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

    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      color: #0a2540;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* container principale */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem;
    }

    /* header e hero */
    .hero {
      text-align: center;
      margin-bottom: 3rem;
    }

    .hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #0B2B40, #1E6F5C);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }

    .club-badge {
      display: inline-block;
      background: #e9f3ef;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #1e6f5c;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      color: #2c5a6e;
      max-width: 650px;
      margin: 0.5rem auto 0;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1.8rem;
      flex-wrap: wrap;
    }

    .btn-outline, .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1.8rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: 0.2s ease;
      cursor: pointer;
      text-decoration: none;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: #1e6f5c;
      color: white;
      box-shadow: 0 6px 14px rgba(30,111,92,0.2);
    }

    .btn-primary:hover {
      background: #0f5545;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .btn-outline {
      border-color: #1e6f5c;
      color: #1e6f5c;
      background: transparent;
    }

    .btn-outline:hover {
      background: #eef6f3;
      transform: translateY(-2px);
    }

    /* griglia principale: form + contatti rapidi */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    /* card generiche */
    .card {
      background: white;
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
      transition: all 0.2s;
      border: 1px solid rgba(30,111,92,0.1);
    }

    .card h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #153e4a;
      border-left: 5px solid #1e6f5c;
      padding-left: 1rem;
    }

    .form-group {
      margin-bottom: 1.3rem;
    }

    label {
      font-weight: 500;
      display: block;
      margin-bottom: 0.5rem;
      color: #1f4e5c;
      font-size: 0.9rem;
    }

    .required-star {
      color: #d9534f;
      margin-left: 2px;
    }

    input, select, textarea {
      width: 100%;
      padding: 0.9rem 1rem;
      border-radius: 1rem;
      border: 1px solid #dce9e5;
      background: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      transition: 0.2s;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #1e6f5c;
      box-shadow: 0 0 0 3px rgba(30,111,92,0.2);
    }

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin: 1.5rem 0 1rem;
    }

    .checkbox-group input {
      width: 1.2rem;
      height: 1.2rem;
      margin-top: 0.2rem;
    }

    .checkbox-group label {
      margin-bottom: 0;
      font-weight: 400;
      font-size: 0.85rem;
      line-height: 1.4;
      color: #2c5a6e;
    }

    .btn-submit {
      background: #0f2b33;
      color: white;
      width: 100%;
      padding: 0.9rem;
      border: none;
      border-radius: 2rem;
      font-weight: 700;
      font-size: 1rem;
      transition: background 0.2s;
      cursor: pointer;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      background: #1e6f5c;
    }

    .required-note {
      font-size: 0.75rem;
      color: #6c8f9e;
      margin-top: 1rem;
      text-align: right;
    }

    /* info contatto rapido */
    .info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .info-icon {
      width: 48px;
      height: 48px;
      background: #eef3f0;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1e6f5c;
      font-size: 1.5rem;
    }

    .info-text h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
      color: #0b3b44;
    }

    .info-text p, .info-text a {
      color: #2d6a7c;
      text-decoration: none;
      font-weight: 500;
    }

    .info-text a:hover {
      color: #1e6f5c;
      text-decoration: underline;
    }

    .response-badge {
      background: #eef3f0;
      padding: 0.6rem 1rem;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 500;
      margin-top: 1rem;
    }

    /* seconda riga: social + come raggiungerci */
    .row-secondary {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 1rem;
    }

    .social-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-card {
      flex: 1 1 160px;
      background: #f9fefc;
      padding: 0.8rem;
      border-radius: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      border: 1px solid #e2ede8;
      transition: 0.2s;
    }

    .social-card i {
      font-size: 1.6rem;
      width: 32px;
      color: #1e6f5c;
    }

    .social-card span {
      font-weight: 500;
      font-size: 0.9rem;
    }

    .social-card small {
      display: block;
      font-size: 0.7rem;
      color: #5f8b94;
    }

    .social-card:hover {
      background: #ffffff;
      border-color: #1e6f5c;
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    }

    .places-list {
      margin-top: 1rem;
      list-style: none;
    }

    .places-list li {
      margin-bottom: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.9rem;
      color: #285f6b;
    }

    .places-list i {
      width: 22px;
      color: #1e6f5c;
      font-size: 1rem;
    }

    .address-block {
      background: #f3f9f6;
      padding: 1rem;
      border-radius: 1.2rem;
      margin-top: 1.2rem;
    }

    footer {
      margin-top: 4rem;
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #cde2db;
      font-size: 0.8rem;
      color: #56828f;
    }

    @media (max-width: 880px) {
      .contact-grid, .row-secondary {
        grid-template-columns: 1fr;
        gap: 1.8rem;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .container {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .card {
        padding: 1.5rem;
      }
      .social-card {
        flex: 1 1 100%;
      }
    }

    .error-msg {
      color: #d9534f;
      font-size: 0.75rem;
      margin-top: 0.3rem;
      display: block;
    }