:root { --primary: #0056b3; --secondary: #6c757d; --light: #f8f9fa; --dark: #343a40; --card-shadow: 0 4px 12px rgba(0,0,0,0.08);}
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; margin: 0; color: #333; }
.navbar { background: white; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); text-decoration: none; }
.nav-links a { margin-left: 20px; text-decoration: none; color: var(--dark); font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.hero { background: var(--primary); color: white; padding: 60px 20px; text-align: center; }
.card { background: white; padding: 25px; border-radius: 12px; box-shadow: var(--card-shadow); margin-bottom: 20px; }
.container { max-width: 1100px; margin: 30px auto; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.btn { padding: 10px 20px; border-radius: 5px; border: none; cursor: pointer; font-weight: bold; text-decoration: none; display: inline-block; }
.btn-primary { background: var(--primary); color: white; }
.footer { background: var(--dark); color: white; padding: 40px 20px; text-align: center; margin-top: 50px; }
.pricing-card { border: 1px solid #ddd; padding: 20px; border-radius: 10px; text-align: center; transition: 0.3s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.nav { background: #333; padding: 15px; color: white; text-align: center; }
.nav a { color: white; margin: 0 15px; text-decoration: none; }
.ip-display { font-size: 2em; color: #0056b3; text-align: center; margin-bottom: 20px; }
#map { height: 400px; border-radius: 8px; margin-bottom: 20px; }
.details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.lookupdetails { margin-top:30px; padding:20px; border:1px solid #eee; }
.form-container {
  width: clamp(350px, 80%, 500px);
  margin: 4rem auto;
  padding: 1rem 2rem;
  border-radius: 24px;
  display: grid;
  align-items: center;
  transition: all 300ms ease-in-out;
  backdrop-filter: blur(10px);
  anchor-name: --form-container;
  background: rgb(51 51 51);
  color: antiquewhite;
  border: 2px solid rgba(255, 255, 255, 0.1)
}
        