
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #022471;
    color: #333;
}

* {
  box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

img.logo {
    width: 368px;
    margin-bottom: 16px;
}

h1 {
    margin: 0 0 10px;
    font-size: 22px;
}

p.subtitle {
    margin: 0 0 24px;
    color: #666;
}

p {
    font-size: 14px;
}

p.indent {
    font-size: 10px;
}

.section {
    text-align: left;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.section h2 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #111827;
}

.button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.primary { background-color: #2563eb; }
.secondary { background-color: #10b981; }
.warning { background-color: #ef4444; }
.urgent { background-color: #022471; }

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.desktop-phone {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #111827;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  cursor: default;
}

@media (min-width: 768px) {
  .mobile-call {
    display: none;
  }

  .desktop-phone {
    display: block;
  }
}