/* Corporate Neutral / Soft Gradient Styling */
:root {
  --primary-blue: #2c5282;
  --secondary-blue: #4299e1;
  --light-blue: #ebf8ff;
  --slate-dark: #2d3748;
  --slate-medium: #4a5568;
  --slate-light: #718096;
  --bg-grey: #f7fafc;
  --white: #ffffff;
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-card: 8px;
  --radius-button: 4px;
  --gradient-header: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-grey);
  color: var(--slate-medium);
  line-height: 1.7;
  font-size: 16px;
}

/* Header Styling */
header {
  background: var(--gradient-header);
  padding: 20px 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

.logo span {
  font-weight: 400;
  font-size: 18px;
  margin-left: 10px;
}

/* Navigation Styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: var(--radius-button);
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

nav a.active {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  color: var(--slate-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-blue);
}

/* Content Cards */
.content-card {
  background-color: var(--white);
  border-radius: var(--radius-card);
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: var(--shadow-medium);
}

.content-card h2 {
  color: var(--slate-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-blue);
}

.content-card h3 {
  color: var(--slate-dark);
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.content-card p {
  margin-bottom: 15px;
  color: var(--slate-medium);
}

.content-card ul {
  margin-left: 25px;
  margin-bottom: 15px;
  color: var(--slate-medium);
}

.content-card li {
  margin-bottom: 8px;
}

/* Disclaimer Boxes */
.disclaimer-box {
  background-color: #fffaf0;
  border-left: 4px solid #dd6b20;
  padding: 20px;
  margin: 30px 0;
  border-radius: var(--radius-card);
}

.disclaimer-box.important {
  background-color: #fef5e7;
  border-left-color: #d69e2e;
}

.disclaimer-box strong {
  color: #9c4221;
  display: block;
  margin-bottom: 8px;
}

/* Footer Styling */
footer {
  background-color: var(--slate-dark);
  color: var(--light-blue);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Contact Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--slate-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-button);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

button.submit-button {
  background: var(--gradient-header);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-button);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

button.submit-button:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .page-title {
    font-size: 26px;
  }
  
  .content-card {
    padding: 20px;
  }
  
  .content-card h2 {
    font-size: 20px;
  }
}

/* Print Styles */
@media print {
  header, footer {
    display: none;
  }
  
  body {
    background-color: var(--white);
  }
  
  .content-card {
    box-shadow: none;
    page-break-inside: avoid;
  }
}