/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Layout */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #00529B;
}

header p {
  font-size: 1.2em;
  color: #666;
}

/* Sections */
.website-analysis {
  background: #fff;
  padding: 20px;
  border-left: 6px solid #007acc;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.website-analysis h2 a {
  color: #007acc;
  text-decoration: none;
}

.website-analysis h2 a:hover {
  text-decoration: underline;
}

.website-analysis h3 {
  margin-top: 15px;
  color: #333;
}

ul {
  margin: 10px 0 20px 20px;
  list-style-type: disc;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 40px;
}