* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #1f2937;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  padding: 1rem 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-img {
  height: 48px;
}
.site-info {
  display: flex;
  flex-direction: column;
}
.site-title {
  font-size: 1.8rem;
  color: #1f2937;
  font-weight: 700;
  line-height: 1.2;
}
.site-tagline {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* SEO Text */
.seo-text {
  text-align: center;
  margin-bottom: 2rem;
}
.seo-text h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.seo-text p {
  color: #4b5563;
  font-size: 1rem;
}

/* Tabs */
.tab-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  background: #e5e7eb;
  cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(to right, #6366f1, #4f46e5);
  color: white;
}

/* Tools */
.tool-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tool-section.active-tab {
  display: block;
  opacity: 1;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.tool-card {
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: 0.2s ease;
}
.tool-card img {
  height: 48px;
  margin-bottom: 0.5rem;
}
.tool-card h3 {
  font-size: 1.1rem;
}
.tool-card p {
  font-size: 0.9rem;
  color: #4b5563;
}
.tool-card:hover {
  transform: translateY(-3px);
  background: #f3f4f6;
}

/* Ads */
.top-banner-ad,
.between-tabs-ad,
.footer-ad {
  background: #e0e7ff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.9rem;
  margin: 1rem 0;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  padding: 1.2rem;
  border-top: 1px solid #e5e7eb;
}

/* Header */
.site-header {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 48px;
  height: 48px;
}

.site-info h1 {
  font-size: 24px;
  margin: 0;
}

.tagline {
  font-size: 14px;
  color: #e0f7ff;
  margin-top: 4px;
}

.static-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 16px;
  line-height: 1.7;
}

.static-page h2, .static-page h3 {
  margin-top: 24px;
  color: #222;
}

.static-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  background: #f9f9f9;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0072ff;
  outline: none;
}

.submit-btn {
  background-color: #0072ff;
  color: white;
  font-size: 15px;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #005bd8;
}
.site-footer {
  background: linear-gradient(to right, #eef4f8, #f7fafc);
  border-top: 1px solid #dce4ec;
  margin-top: 60px;
  font-size: 15px;
  color: #444;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.footer-logo {
  width: 42px;
  height: 42px;
  margin-bottom: -11px;
}

.footer-brand h3 {
  font-size: 20px;
  margin: 0;
  color: #222;
}

.footer-tagline {
  font-size: 13px;
  color: #666;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #0072ff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: #0052b4;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 13px;
  text-align: center;
  color: #888;
}
/* Footer Styling for All Pages */
footer {
  background: #222;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

footer .container {
  max-width: 1100px;
  margin: auto;
}

footer p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #ccc;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.policy-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
  min-height: 80vh;
}

.policy-page .container {
  max-width: 900px;
  margin: auto;
}

.policy-page .card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.policy-page h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.policy-page h2 {
  font-size: 20px;
  margin-top: 30px;
  color: #444;
}

.policy-page p,
.policy-page li {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.policy-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-page a {
  color: #0077cc;
  text-decoration: underline;
}
.policy-page a:hover {
  text-decoration: none;
}


