/* Reset default styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header styles */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-logo { display: flex; align-items: center; text-decoration: none; color: #333; font-size: 1.5rem; font-weight: 700; }
.site-logo img { max-height: 40px; margin-right: 10px; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
nav ul li a:hover { color: #007bff; }

/* Main content styles */
.main-content { padding: 40px 0; }
article { background-color: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
h1 { font-size: 2.5rem; margin-bottom: 20px; color: #222; }
h2 { font-size: 1.8rem; margin: 30px 0 15px; color: #222; }
h3 { font-size: 1.4rem; margin: 20px 0 10px; color: #222; }
p { margin-bottom: 20px; font-size: 1.1rem; }
a { color: #007bff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #0056b3; text-decoration: underline; }
ul { margin-bottom: 20px; padding-left: 20px; }
ul li { margin-bottom: 10px; }

/* FAQ Section */
.wp-block-rank-math-faq-block { margin-top: 30px; }
.rank-math-faq-item { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.rank-math-question { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: #222; }
.rank-math-answer { font-size: 1rem; color: #444; }

/* Footer styles */
.site-footer { background-color: #333; color: #fff; padding: 20px 0; text-align: center; }
.site-footer p { font-size: 0.9rem; }

/* Responsive design */
@media (max-width: 768px) {
  .site-header .container { flex-direction: column; gap: 20px; }
  nav ul { flex-direction: column; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 15px; }
}