@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  background-color: #000;
  color: #333;
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.header {
  background-color: #000;
  padding: 20px 0;
  color: white;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 24px;
  font-weight: bold;
}
nav {
  gap: 20px;
  padding-top: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  background: #fff;
  text-align: center;
  padding: 25px 0;
}
.hero h2 {
  font-size: 3rem;
  color: #2d2d2d;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #444;
}
.btn-primary {
  background-color: #000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
}

.btn-white {
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
}

/* Features Section */
.features {
  text-align: center;
  padding: 80px 0;
  background: #000;
}
.features h3 {
  color: #fff;
}
.features ul {
  list-style: none;
  padding: 0;
}
.features li {
  margin: 10px 0;
  font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
  text-align: center;
  padding: 80px 0;
  background: #fff;
}
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.plan {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  max-width: 300px;
}
.plan h4 {
  font-size: 1.8rem;
  color: #e57c35;
}
.plan p {
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 80px 0;
  background-color: #000;
  color: #fff;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #000;
  color: #fff;
  font-family: "Rubik", sans-serif;
  border-top: 1px solid #222;
  max-width: 75%;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 280px;
  margin-bottom: 20px;
}

.footer-right {
  text-align: right;
}

.footer-links {
  margin-top: 10px;
}

.footer-links div {
  margin: 5px 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-links a i {
  margin-right: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-left p i {
  margin-right: 8px;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .footer-right {
    text-align: left;
  }
}

svg {
  color: #000;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.why {
  font-size: 5vh;
}
.cardhead {
  font-size: 21px;
}

main {
  background: #fff;
}

.terms {
  max-width: 75%;
  margin: 0 auto;
  padding: 20px 0;
}

.terms a {
  color: #000;
  text-decoration: underline;
}
pre {
    white-space: pre-wrap;
}