/* GOOGLE-LIKE MINIMALIST STYLE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #202124;
  line-height: 1.58;
  padding: 40px 20px;
}

a {
  text-decoration: none;
}

.header {
  margin-bottom: 40px;
}

.logo-box .logo {
  font-size: 28px;
  color: #1a0dab;
  font-weight: bold;
}

h1 {
  font-size: 24px;
  margin: 20px 0;
}

.website-card {
  margin-bottom: 40px;
}

.website-card h2 {
  font-size: 20px;
  color: #1a0dab;
  margin-bottom: 5px;
}

.website-card a.website-link {
  font-size: 14px;
  color: #006621;
  display: block;
  margin-bottom: 5px;
}

.website-card p {
  font-size: 14px;
  color: #4d5156;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination-link {
  display: inline-block;
  margin: 0 5px;
  color: #1a0dab;
  font-size: 14px;
}

.pagination-link:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #dadce0;
  font-size: 12px;
  color: #70757a;
  display: flex;
  justify-content: space-between;
}

.footer-right .contact a {
  color: #70757a;
  font-size: 12px;
}

.footer-right .contact a:hover {
  color: #1a0dab;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}