/* Custom Design Variables based on your Logo */
:root {
  --primary: #00b2cd;       /* Cyan from your logo */
  --primary-dark: #008fa4;  /* Deep cyan for hover states */
  --primary-light: #e6f7f9; /* Soft tint for backgrounds/badges */
  --text-main: #2b3639;     /* Deep charcoal for great readability */
  --text-muted: #627d82;    /* Soft gray-blue for secondary text */
  --bg-body: #f5f9fa;       /* Very light cool-toned background */
  --bg-card: #ffffff;       /* Pure white for containers */
  --radius: 12px;           /* Modern rounded corners */
  --transition: all 0.3s ease;
}

/* General Resets & Typography */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: var(--bg-body);
  color: var(--text-main);
}

/* Header & Navbar */
header {
  background: var(--bg-card);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 178, 205, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Standard Nav Links */
.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--primary);
}

/* Mobile Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-main);
}

/* Main Layout Grid */
main {
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  box-sizing: border-box;
}

section {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 178, 205, 0.05);
}

h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--text-main);
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Modern App Cards Grid Layout */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.app-card {
  background: var(--bg-body);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 178, 205, 0.05);
}

.app-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: var(--text-main);
}

.app-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Call to Action Buttons & Links */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 178, 205, 0.3);
}

.contact-list, .privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.contact-list li, .privacy-list li {
  margin-bottom: 12px;
}

.contact-list a, .privacy-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover, .privacy-list a:hover {
  text-decoration: underline;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 30px;
  background: var(--bg-card);
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 178, 205, 0.05);
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 15px;
  }
  .nav-links.active {
    display: flex;
  }
  main {
    padding: 20px 15px;
    margin: 10px auto;
  }
  section {
    padding: 20px;
  }
}

/* --- Account Deletion Page Specific Styles --- */
.step-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.step-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
}

.step-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: var(--primary);
}

.step-list li:nth-child(1)::before { content: "1️⃣"; }
.step-list li:nth-child(2)::before { content: "2️⃣"; }
.step-list li:nth-child(3)::before { content: "3️⃣"; }
.step-list li:nth-child(4)::before { content: "4️⃣"; }

.email-template {
  background: var(--bg-body);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: monospace;
  white-space: pre-line;
  margin-top: 15px;
  color: var(--text-main);
}

.important-note {
  background: #fff5f5;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 15px;
  border-radius: var(--radius);
  margin-top: 15px;
  font-size: 0.95rem;
}

/* --- Terms & Conditions Page Specific Styles --- */
.terms-date {
  font-style: italic;
  color: var(--text-muted);
  margin-top: -5px;
  margin-bottom: 25px;
  display: block;
}

.nested-list {
  padding-left: 20px;
  margin-top: 10px;
}

.nested-list li {
  margin-bottom: 8px;
}
