/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; background: #f9fafb; color: #333; }


/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.logo { font-weight: bold; font-size: 1.4rem; color: #0070f3; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: #333; transition: color 0.2s; }
.nav-links a:hover, .active { color: #0070f3; }


/* Hero */
.hero { text-align: center; padding: 5rem 2rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 2rem; }


/* Buttons */
.btn { display: inline-block; padding: 0.7rem 1.4rem; background: #0070f3; color: white; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
.btn:hover { background: #0059c9; }


/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; padding: 2rem; max-width: 1000px; margin: auto; }
.card { background: white; padding: 2rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }


/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; padding: 2rem; max-width: 1000px; margin: auto; }
.plan { background: white; padding: 2rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.plan .price { font-size: 1.5rem; margin: 1rem 0; color: #0070f3; }
.highlight { border: 2px solid #0070f3; }


/* Page headers */
.page-header { text-align: center; padding: 3rem 2rem; background: #eef2f7; }


/* Content */
.content { max-width: 800px; margin: 2rem auto; padding: 0 2rem; }


/* Support form */
.support-form { display: flex; flex-direction: column; gap: 1rem; max-width: 500px; margin: auto; }
.support-form input, .support-form textarea { padding: 0.7rem; border: 1px solid #ccc; border-radius: 6px; }
.support-form button { align-self: flex-start; }


/* Footer */
footer { text-align: center; padding: 1.5rem; margin-top: 3rem; background: #fff; border-top: 1px solid #eee; font-size: 0.9rem; }

#paypal-button-container {
  display: flex;
  justify-content: center;  /* centers button */
  margin-top: 20px;
  max-width: 300px;         /* keeps button from stretching too wide */
  margin-left: auto;
  margin-right: auto;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF; /* Nice blue */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}