/* Common Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  padding-top: 70px;
}

/* Navigation */
.nav-bar {
  background-color: #2c3e50;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.nav-logo span {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  background-color: #3498db;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 128px;
  height: 128px;
  margin-bottom: 20px;
}

/* Content */
.content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Page Specific */
.contact-content {
  padding: 20px;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
}

.contact-methods {
  margin-top: 30px;
  display: grid;
  gap: 30px;
}

.contact-method {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.contact-method h3 {
  color: #2c3e50;
  margin-top: 0;
}

.contact-method a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-topics {
  background-color: #f1f8ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #2ecc71;
}

.contact-topics ul {
  list-style: none;
  padding: 0;
}

.contact-topics li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.contact-topics li:before {
  content: "✓";
  color: #2ecc71;
  position: absolute;
  left: 0;
}

.response-time {
  background-color: #fff3e0;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #f39c12;
}

/* Privacy Policy Page Specific */
.policy-content {
  padding: 20px;
}

.policy-content section {
  margin-bottom: 40px;
}

.policy-content h2 {
  color: #2c3e50;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-top: 30px;
}

.policy-content h3 {
  color: #34495e;
  margin-top: 20px;
}

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

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

.verification-info {
  background-color: #e8f5e9;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #4caf50;
}

.google-api-section {
  background-color: #f1f8ff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #3498db;
}

.policy-updates {
  background-color: #fff3e0;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #ff9800;
}

.last-updated {
  text-align: right;
  color: #666;
  font-style: italic;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
    padding-top: 70px;
  }

  .content {
    padding: 20px;
  }

  .contact-methods {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .nav-logo span {
    display: none;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    padding: 5px;
    font-size: 0.9em;
  }
}
