/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

main {
  flex: 1;
}

/* Header */
.header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.header h2 {
  font-size: 2rem;
  margin: 0;
}

.logo-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

/* Hero section */
.hero {
  background-color: #ecf0f1;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero p {
  font-size: 1.4rem;
  color: #34495e;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* App store buttons */
.app-store-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.app-store-link:hover {
  background-color: #34495e;
}

.app-store-link img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Content pages */
.page-content {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  color: #2c3e50;
  margin-bottom: 2rem;
}

.page-content h2 {
  color: #34495e;
  margin: 2rem 0 1rem;
}

.page-content p {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}