@import url('https://fonts.googleapis.com/css2?family=Grenze:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #995a1c;
  --background-color: #fff7ef;
  --text-color: #000000;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
  padding-right: 5%;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-logo {
  height: 60px;
}

.logo-text {
  font-family: 'Grenze', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero h1 {
  font-family: 'Grenze', serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.app-store-button {
  display: inline-block;
  height: 50px;
  transition: transform 0.2s ease;
}

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

.btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 90, 28, 0.3);
}

footer {
  background: white;
  padding: 20px 5%;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5% 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }

  .phone-mockup {
    max-width: 250px;
  }

  .hero-logo {
    height: 50px;
    margin-bottom: 30px;
  }

  .logo-text {
    font-size: 2rem;
  }
}

.features {
  padding: 0 5%;
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}

.feature-card {
  background: var(--background-color);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: auto;
  height: 300px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.feature-content {
  padding: 24px;
  width: calc(100% - 48px);
}

.feature-content h3 {
  font-family: 'Grenze', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0 0 12px 0;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 40px 5%;
  }

  .feature-grid {
    padding: 40px 0;
    gap: 30px;
  }

  .feature-content h3 {
    font-size: 1.5rem;
  }

  .feature-content p {
    font-size: 1rem;
  }
}

.privacy-policy {
  min-height: 100vh;
  background-color: var(--background-color);
  padding: 80px 5%;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.privacy-content h1 {
  font-family: 'Grenze', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0 0 40px 0;
  text-align: center;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-family: 'Grenze', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0 0 16px 0;
}

.privacy-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

.privacy-section ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.privacy-section li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 8px;
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.privacy-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 5%;
  }

  .privacy-content {
    padding: 24px;
    margin-top: 24px;
  }

  .privacy-content h1 {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 1rem;
  }
}
