/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(to right, #e0f7fa, #f0f4f8);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #004d40;
}

/* Why Kavai Section */
.why-kavai {
  background-color: #fff;
  padding: 60px 0;
}

.why-kavai h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
}

.feature .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #666;
}

/* Services Section */
.services {
  background-color: #f0f4f8;
  padding: 60px 0;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.card .privacy-note {
  color: #00796b;
  font-weight: bold;
}

.card .affordability-note {
  color: #00796b;
  font-weight: bold;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  color: #00796b;
  font-weight: bold;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* Community Section */
.community {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.community blockquote {
  font-style: italic;
  margin: 20px 0;
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community .cta {
  margin-top: 30px;
}

/* Footer */
footer {
  background-color: #e0f7fa;
  padding: 40px 0;
  text-align: center;
  color: #333;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  background-color: #00796b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.links a {
  color: #00796b;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

.contact p {
  font-size: 0.95rem;
  color: #666;
}

.socials a {
  color: #00796b;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  text-decoration: underline;
}