/*
Theme Name: Wizzie Child Theme
Theme URI: http://wordpress-style.net
Description: Child Theme For Divi
Author: Web Wizards
Author URI: http://wordpress-style.net
Template: Divi
Version: 2.0
*/
/* Start your custom CSS bellow this comment
============================================ */
.et_fixed_nav.et_show_nav #page-container {
  padding-top: 0;
}
/* Reset and Base */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
/* Center main content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* Header Styling */
header {
  background-color: #0e3c65;
  color: white;
  padding: 20px 0;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 32px;
}
/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  text-decoration: underline;
}
/* Main Content Styling */
main h2 {
  color: #0e3c65;
  text-align: center;
  margin-top: 40px;
}
main p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}
/* Buttons */
.button {
  display: inline-block;
  background-color: #1cc88a;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}
.button:hover {
  background-color: #17a673;
}
/* Footer */
footer {
  background-color: #eee;
  color: #333;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}
footer a {
  color: #0e3c65;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
