/* Base Styles */
:root {
  --ssa-blue: #0057b8;
  --ssa-dark-blue: #003366;
  --ssa-light-blue: #e9f7ff;
  --ssa-red: #c12535;
  --ssa-gray: #5a5a5a;
  --ssa-light-gray: #f2f2f2;
  --ssa-border: #e0e0e0;
}

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

body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--ssa-light-gray);
  color: #333;
}

a {
  color: var(--ssa-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--ssa-dark-blue);
  text-decoration: underline;
}

.container {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  background-color: #fff;
  border-bottom: 1px solid var(--ssa-border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 50px;
  margin-right: 15px;
}

.header-title {
  color: var(--ssa-dark-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.header-info {
  text-align: right;
  font-size: 0.9rem;
}

.header-info p {
  margin: 0;
  color: var(--ssa-gray);
}

/* Main Content Styles */
.main-content {
  max-width: 800px;
  margin: 30px auto;
  background-color: #fff;
  border: 1px solid var(--ssa-border);
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-title {
  color: var(--ssa-dark-blue);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ssa-border);
}

/* Info Box Styles */
.info-box {
  background-color: var(--ssa-light-blue);
  border: 1px solid #cceaf8;
  border-left: 4px solid var(--ssa-blue);
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 4px;
}

.info-box-title {
  color: var(--ssa-dark-blue);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.info-box p {
  margin: 0 0 10px 0;
  color: #333;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Download Button Styles */
.download-button {
  display: inline-block;
  background-color: var(--ssa-blue);
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 5px;
  text-align: center;
  transition: background-color 0.2s;
}

.download-button:hover {
  background-color: var(--ssa-dark-blue);
  color: #fff;
  text-decoration: none;
}

.download-button i {
  margin-right: 8px;
}

/* Content Section Styles */
.content-section {
  margin-bottom: 25px;
}

.section-title {
  color: var(--ssa-dark-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.steps-list {
  list-style-type: none;
  counter-reset: step-counter;
  margin: 0;
  padding: 0;
}

.steps-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: var(--ssa-blue);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Alert Box Styles */
.alert-box {
  background-color: #fef8e8;
  border: 1px solid #f5e6b8;
  border-left: 4px solid #f0b400;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-box p {
  margin: 0;
  color: #333;
}

/* Footer Styles */
.footer {
  background-color: #fff;
  border-top: 1px solid var(--ssa-border);
  padding: 20px 0;
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--ssa-gray);
  margin: 0 12px;
  font-size: 0.9rem;
}

.footer-copyright {
  text-align: center;
  color: var(--ssa-gray);
  font-size: 0.85rem;
}

/* Security Indicators */
.security-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.security-indicator i {
  color: var(--ssa-blue);
  margin-right: 10px;
}

.security-indicator span {
  font-size: 0.9rem;
  color: var(--ssa-gray);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  .header-logo {
    margin-bottom: 10px;
    justify-content: center;
  }
  
  .header-info {
    text-align: center;
  }
  
  .main-content {
    padding: 20px 15px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    margin: 5px 0;
  }
}

/* Accessibility Enhancements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loading Animation */
.loading-indicator {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.loading-indicator i {
  color: var(--ssa-blue);
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
