
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Sora', sans-serif;
    background: #f1f5f9;
    color: #0f172a;
    line-height: 1.1;
  }

  .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 200;
}
.cookie-banner a {
  color: #38bdf8;
  text-decoration: underline;
}
.cookie-banner button {
  margin-left: 1rem;
  background: #38bdf8;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.withdraw-btn {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid #0ea5e9;
  color: #0ea5e9;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.withdraw-btn:hover {
  background-color: #0ea5e9;
  color: white;
}



  header {
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 1.0rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    align-items: center;
  }



  nav a {
    margin: 0 .5rem;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
  }
  .logo-header {
    text-align: center;
    margin-bottom: 2rem;
  }


  .logo {
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    margin: 0;
  }

.logo a{
  font-size: 2.0rem;
  font-weight: 900;
  color: #111;
  margin: 0;
  text-decoration: none;
}
  
  .tagline {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.3rem;
    color: #444;
    margin: 0.2rem 0 0 0;
  }
  .hero {
    background: linear-gradient(135deg, #3b82f6, #84b5cb);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  .hero-image img {
  max-width: 25%;
  margin-top: 10px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
  .cta-btn {
	  text-decoration: none;
    background: white;
    color: #0ea5e9;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
  section {
    padding: 1.2rem 2rem;
    max-width: 1100px;
    margin: auto;
  }
  .section-header {
    text-align: center;
    margin-bottom: 1rem;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card h3 {
    margin-bottom: 0.5rem;
    color: #0f172a;
  }
  .card p {
    color: #475569;
    margin-bottom: 10px;
  }

  .card a {
    color: #000000;
    padding-top:10px;
    padding-bottom:10px;
    
  }
  footer {
    text-align: center;
    padding: 2rem;
    background: #e2e8f0;
    font-size: 0.875rem;
  }

  /* Hamburger button styles */
  #burger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
  #burger svg {
    width: 28px;
    height: 28px;
    stroke: #1e293b;
  }

  /* Desktop nav - show by default */
  nav.desktop-menu {
    display: flex;
    gap: 1rem;
  }

  /* Mobile slide menu styles */
  #mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #1e293b; /* Dark blue-gray for contrast */
    color: white;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  #mobileMenu.open {
    transform: translateX(0);
  }
  #mobileMenu nav a {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  #mobileMenu nav a:hover {
    color: #a5b4fc; /* Light blue highlight */
  }
  #closeMenu {
    background: none;
    border: none;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  #closeMenu svg {
    width: 24px;
    height: 24px;
    stroke: white;
  }

main, .topic-content {
  margin-top: 2rem; /* or padding-top: 2rem; */
  margin-bottom: 2rem; /* or padding-top: 2rem; */
}
/* Page Styles */

.topic-page {

  padding: 4rem 2rem;
  max-width: 90%;
  margin: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.topic-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.topic-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #0f172a;
}
.topic-content p {
  margin-top: 0.5rem;
  line-height: 1.8;
}


.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.login-form {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  max-width: 90%;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #0055aa;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-button:hover {
  background-color: #003f82;
}

.register-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-grid p {
  margin-bottom: 10px;
  margin-top: 10px;
}

.pricing-card {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pricing-card.highlighted {
  border-color: #00ffff;
  background: #f0fdfd;
}
.freebutton {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 6px;
}
.freebutton.primary {
  background: #00cccc;
  color: white;
}
.freebutton.outline {
  border: 2px solid #00cccc;
  color: #00cccc;
}

.guide-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
}

.profile-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.profile-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.profile-info-box,
.profile-upgrade-cta,
.profile-downloads-list {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-info-box p {
margin-bottom: 10px;
}

.profile-upgrade-cta {
  background-color: #f0faff;
  border-left: 5px solid #00bcd4;
}

.profile-btn {
  display: inline-block;
  background-color: #00bcd4;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.profile-btn:hover {
  background-color: #0097a7;
}

.profile-subheading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.profile-downloads-list {
  list-style: none;
  padding-left: 10;
}

.profile-downloads-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.guide-list.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.guide-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.guide-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.guide-summary {
  color: #444;
  margin-bottom: 0.75rem;
}

.guide-price {
  font-weight: bold;
  margin-bottom: 1rem;
}

.guide-actions {
  margin-top: auto;
}

.guide-actions a{
  margin-top: auto;
  color: rgb(112, 100, 102);
}

.btn {
  background: #c4da1d;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-right: 0.5rem;
}

.btn-sm {
  background: #0070f3;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.7rem;
}



.link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0070f3;
  text-decoration: underline;
}


.guidei-detail.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.guidei-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.guidei-header {
  margin-bottom: 1.5rem;
}

.guidei-image {
  width: 40%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.guidei-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.guidei-description {
  margin-bottom: 1.25rem;
}

.guidei-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #111;
}

.category-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-nav a {
  padding: 0.5rem 1rem;
  background: #f1f1f1;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}

.category-nav a:hover {
  background: #ddd;
}


.blog-post {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1c1c1c;
}

.blog-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.post-image {
  width: 40%;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-content p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.back-link {
  margin-top: 3rem;
  text-align: left;
}

.back-link .btn {
  background: #222;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-link .btn:hover {
  background: #444;
}

.admin-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  
  justify-content: center;
  margin-top: 4rem;
}

.admin-tile {
  background: #c1cde8;
  padding: 2rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.admin-tile:hover {
  background: #e5e7eb;
}

.tile-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tile-links a {
  color: #1f2937;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.tile-links a:hover {
  color: #000;
  text-decoration: underline;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 1rem;
}

.orders-table th,
.orders-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  text-align: left;
}

.orders-table th {
  background-color: #e2e8f0;
  font-weight: 600;
}

.orders-table tr:nth-child(even) {
  background-color: #f9fafb;
}


.downloads-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.downloads-table th,
.downloads-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  text-align: left;
}

.downloads-table th {
  background-color: #c1cde8;
  font-weight: 600;
}

.downloads-table tr:nth-child(even) {
  background-color: #f5f5f5;
}


.blog-form-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem 3rem;
  background: #f9fafb;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-form-container h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  text-align: center;
}

.blog-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}


.blog-form input[type="email"],
.blog-form input[type="text"],
.blog-form input[type="file"],
.blog-form input[type="number"],
.blog-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.blog-form textarea {
  min-height: 200px;
  resize: vertical;
  white-space: pre-wrap;
  line-height: 1.5;
}

.blog-form button {
  background-color: #3b82f6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.blog-form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}


.blog-form button:hover {
  background-color: #2563eb;
}


button.delete-btn {
  background-color: #e53935;
  color: white;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button.delete-btn:hover {
  background-color: #c62828;
}

 #burger-menu { 
      display: none;
    }

     #burger-icon {
      display: none;
    }

.subscribe-section {
  background-color: #f8f9fa;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 1rem;
  max-width: 1100px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subscribe-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.subscribe-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.subscribe-form input[type="email"],
.subscribe-form input[type="text"] {
  padding: 0.75rem;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.75rem 2rem;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #005fa3;
}

.thank-you-container {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background-color: #f9f9fb;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: 'Sora', sans-serif;
}

.thank-you-container h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.thank-you-container .message {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.thank-you-container .btn {
  display: inline-block;
  background-color: #0070f3;
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.thank-you-container .btn:hover {
  background-color: #005fd1;
}



  /* Responsive: show burger on small screens, hide desktop nav */
  @media (max-width: 768px) {
    nav.desktop-menu {
      display: none;
    }
    #burger {
      display: block;
    }
    nav.mobile-menu {
      display: block;
    }

    

    #burger-icon {
      display:block;
	margin-bottom:0px;
	cursor: pointer;
	z-index: 999;
  }

.subscribe-section {
  max-width: 90%;
}

#burger-menu-hold {
width:90%;	
}

  #burger-menu {
    display:block;
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100%;
	background-color: #e4e4e4;
	padding-top: 60px;
	transition: 0.3s;
	z-index: 998;
  }

  #burger-menu a {
	padding: 15px;
	  margin-left:15px;
	text-decoration: none;
	font-size: 18px;
	color: rgb(43, 42, 42);
	display: block;
	transition: 0.3s;
  }

  #burger-menu a:hover {
	background-color: #898787;
  }

  #close-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	font-size: 24px;
	color: white;
	cursor: pointer;
  }

.guide-image {
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
}

	  
	  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.0rem;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
 

  }

