html, body { margin:0; padding:0; font-family:Inter,sans-serif; }
body {
  background: linear-gradient(135deg,#73ac45 0%,#4CAF50 100%);
   color:#fff;
}
header { padding:30px 40px; display:flex; justify-content:space-between; align-items:center; }
.logo { display:flex; align-items:center; gap:12px; }
.logo-icon { font-size:40px; color:#72ad46; }
.logo-text { font-size:28px; font-weight:700; text-shadow:2px 2px 0 rgba(0,0,0,0.2); }

.nav { display:flex; gap:16px; }
.nav a { color:#fff; text-decoration:none; padding:8px 14px; border-radius:999px; background:rgba(255,255,255,0.15); }

main { padding:0 40px 40px; border-bottom:8px rgba(198,188,156,0.68) solid; border-top:XXXXpx rgba(198,188,156,0.89) solid; }

.arizona { display:grid; grid-template-columns:1.2fr 1fr; gap:40px; margin-bottom:40px; }
.arizona-text h1 { font-size:48px; margin:0 0 10px; text-shadow:3px 3px 0 rgba(0,0,0,0.25); }
.arizona-cta { margin-top:24px; display:flex; gap:12px; flex-wrap:wrap; }

.btn-primary { padding:12px 24px; border-radius:999px; background:#ff6f91; border:none; cursor:pointer; }
.btn-secondary { padding:10px 20px; border-radius:999px; border:2px solid rgba(255,255,255,0.7); background:transparent; }

.arizona-illustration { position:relative; min-height:220px; }
.bubble { position:absolute; border-radius:50%; background:rgba(245,255,246,0.28); backdrop-filter:blur(8px); }
.b1 { width:110px; height:110px; top:10px; right:10px; }
.b2 { width:90px; height:90px; bottom:20px; left:20px; }
.b3 { width:60px; height:60px; top:80px; left:80px; }
.dolphin { position:absolute; font-size:50px; top:60px; right:40px; }

.tools-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-top:30px;
}

.tool-card {
  border-radius:24px;
  background-color:rgb(198,193,167);
  padding:24px;
  border:9px #b2b0aa solid;
  box-shadow:0 10px 24px rgba(49,85,29,0.85);
}

.tool-card h2 { margin-top:0px; }
.tool-card p { margin-bottom:16px; }

footer {
  padding:15px 40px;
  background:rgba(101,101,101,0.52);
  display:flex;
  justify-content:space-between;
}
.footer-links a { color:#fff; text-decoration:none; margin-left:12px; }