:root {
  /* Apple-like Color Palette */
  --background-color: #f5f5f7;
  --card-background: #ffffff;
  --text-main: #1d1d1f;
  --text-secondary: #86868b;
  --link-color: #0066cc;
  --link-hover: #004499;
  --border-color: #d2d2d7;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  font-family: var(--font-family-base);
  background-color: var(--background-color);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

header {
  text-align: left;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

h1 {
  font-size: 24px;
  line-height: 1.07143;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
}

/* Sections */
section {
  margin-bottom: 100px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.product-card {
  background: var(--card-background);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-top {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}

.product-icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  flex-shrink: 0;
}

.product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.product-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.product-description {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.product-bottom {
  margin-top: 24px;
  width: 100%;
}

.store-links {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .product-card {
    align-items: center;
    text-align: center;
  }

  .product-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .product-text {
    align-items: center;
  }

  .store-links {
    justify-content: center;
  }
}

.store-badge {
  height: 40px;
  transition: opacity 0.2s;
}

.store-badge:hover {
  opacity: 0.8;
}

.policy-link-container {
  margin-top: 12px;
}

.policy-link {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-card {
  background: var(--card-background);
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-text {
  font-size: 21px;
  line-height: 1.381;
  font-weight: 400;
  letter-spacing: 0.011em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.email-link {
  color: var(--link-color);
  font-size: 21px;
  line-height: 1.381;
  font-weight: 400;
  letter-spacing: 0.011em;
  text-decoration: none;
  transition: color 0.2s;
}

.email-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Privacy Policy */
.policy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.policy-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.policy-content p,
.policy-content ul {
  font-size: 17px;
  line-height: 1.47059;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.33337;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}