:root {
  --primary-color: #0D47A1;
  --secondary-color: #FF6D00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.app-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.app-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.app-card p {
  color: #666;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e66200;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-top: 10px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

footer {
  text-align: center;
  padding: 30px;
  background-color: var(--text-dark);
  color: var(--text-light);
  margin-top: 50px;
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Privacy Policy Styles */
.privacy-content {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p,
.privacy-content ul {
  margin-bottom: 15px;
  color: #555;
}

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

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

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

/* Profile Section Styles */
.profile-section {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--primary-color);
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    align-items: center;
  }

  .profile-text {
    flex: 3;
    padding-right: 30px;
  }

  .profile-badges {
    flex: 2;
  }
}

.profile-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.profile-text p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: #555;
}

.badge-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}