/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
  color: #555555;
  line-height: 1.6;
}

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

/* Header Styles */
header {
  background-color: #fafafa;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 60px;
  height: 60px;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.site-title {
  font-size: 30px;
  font-weight: 500;
  color: #555555;
  text-decoration: none;
}

/* Main Content Styles */
main {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.hero-section {
  text-align: center;
  margin-bottom: 60px;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 40px;
  font-weight: 300;
  color: #222;
  margin: 40px 0 20px;
  text-align: center;
}

h2 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 30px 0 15px;
}

p {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
}

.tagline {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

/* Links */
a {
  color: #108346;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0d6a37;
  text-decoration: underline;
}

/* Lists */
ul {
  margin: 15px 0 15px 20px;
}

li {
  margin-bottom: 8px;
  color: #555;
}

/* App Store Badge */
.app-store-badge {
  display: inline-block;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
}

.app-store-badge img {
  width: 300px;
  height: auto;
  max-width: 100%;
}

.rating {
  font-size: 24px;
  color: #ffd700;
  margin-top: 10px;
}

/* Screenshots Section */
.screenshots {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.screenshot {
  flex: 0 1 230px;
}

.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
  background-color: #fafafa;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 14px;
  margin-top: auto;
}

footer a {
  color: #108346;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Privacy Policy Specific Styles */
.privacy-content {
  text-align: left;
  line-height: 1.7;
}

.privacy-content strong {
  color: #333;
  font-weight: 600;
  display: block;
  margin: 25px 0 10px;
  font-size: 18px;
}

.privacy-content strong:first-child {
  font-size: 28px;
  text-align: center;
  margin: 0 0 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  h1 {
    font-size: 30px;
  }

  .tagline {
    font-size: 18px;
  }

  .screenshots {
    gap: 20px;
  }

  .screenshot {
    flex: 0 1 calc(50% - 10px);
    max-width: 200px;
  }

  .app-store-badge img {
    width: 250px;
  }

  .container {
    padding: 0 15px;
  }

  main {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .screenshot {
    flex: 0 1 100%;
    max-width: 230px;
  }

  h1 {
    font-size: 26px;
  }

  .privacy-content strong:first-child {
    font-size: 24px;
  }
}
