body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0 1rem 0;
  margin-bottom: 2rem;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #22223b;
  margin-bottom: 0.5rem;
}

.site-nav {
  margin-top: 0.5rem;
}
.site-nav a {
  color: #3a86ff;
  text-decoration: none;
  margin-right: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:last-child {
  margin-right: 0;
}
.site-nav a:hover {
  color: #22223b;
}

.site-main {
  min-height: 60vh;
}

.hero {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.03);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #22223b;
}
.hero p {
  font-size: 1.1rem;
  color: #444;
}
.hero a {
  color: #3a86ff;
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 320px;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(58,134,255,0.10);
  transform: translateY(-4px) scale(1.02);
}
.brand-logo {
  max-width: 100px;
  margin-bottom: 1rem;
  filter: grayscale(10%);
}
.card h2 {
  color: #3a86ff;
  margin-bottom: 0.5rem;
}
.card p {
  color: #444;
  margin-bottom: 1.2rem;
}
.btn {
  color: #fff;
  background: #3a86ff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn:hover {
  background: #22223b;
  color: #fff;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  color: #888;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  border-radius: 8px 8px 0 0;
  margin-top: 3rem;
}
.site-footer a {
  color: #3a86ff;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.contact-form {
  margin: 2rem auto 0 auto;
  max-width: 400px;
  text-align: left;
}
.contact-form div {
  margin-bottom: 1.2rem;
}
.contact-form label {
  font-weight: 600;
  color: #22223b;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 1rem;
  margin-top: 0.3rem;
  background: #f8fafc;
  color: #222;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3a86ff;
  background: #fff;
}
.contact-form button.btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 2em;
    }

    nav a {
        margin: 0 10px;
    }
}