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

:root {
  --navy: #0B2A3F;
  --navy-deep: #123E5A;
  --accent: #2C8FD6;
  --ink: #0F172A;
  --muted: #475569;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --light-blue: #F0F7FF;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* HEADER - FIXED ALIGNMENT & LARGER LOGO */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(11, 42, 63, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  width: 100%;
}

/* LARGER LOGO - 85px height */
.logo img {
  height: 85px;
  width: auto;
  max-width: 280px;
  display: block;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

/* Active page indicator */
nav a.active {
  color: var(--accent);
  font-weight: 600;
}

nav a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
}

/* Professional contact button */
.contact-btn {
  background: var(--accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 143, 214, 0.3);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 140px 0 160px;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.15;
}

.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 24px auto 0;
  border-radius: 2px;
}

.hero p {
  font-size: 19px;
  color: #D6E4F0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* MAIN CONTENT SECTIONS */
section {
  padding: 100px 0;
  width: 100%;
}

section:nth-child(even) {
  background-color: var(--light-blue);
}

/* Section titles */
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--navy);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Section text */
.section-text {
  max-width: 820px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* CAPABILITIES PAGE - FIXED LAYOUT */
.intro-text {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.capability-section {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.capability-section:last-child {
  border-bottom: none;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.capability-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.capability-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  background: var(--light-blue);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.capability-header h2 {
  font-size: 32px;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.capability-description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 820px;
}

/* FIXED: Capability items - no grid, simple flex */
.capability-items {
  max-width: 900px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.capability-item:hover {
  border-color: var(--accent);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(11, 42, 63, 0.08);
}

.item-icon {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  margin-top: 2px;
  flex-shrink: 0;
  min-width: 24px;
}

.item-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Homepage cards */
.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.who-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 42, 63, 0.08);
  border-color: var(--accent);
}

.who-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}

.who-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.cta-button:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 143, 214, 0.25);
}

/* FOOTER */
footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 60px 0 40px;
  font-size: 14px;
  margin-top: auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column a {
  color: #CBD5E1;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  color: rgba(203, 213, 225, 0.7);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(203, 213, 225, 0.9);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Lists styling - SIMPLIFIED */
ul {
  margin: 20px 0 30px 20px;
  max-width: 820px;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
  padding-left: 5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 25px 0;
    flex-direction: column;
    gap: 25px;
  }
  
  .logo img {
    height: 70px;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .contact-btn {
    padding: 8px 20px;
  }
  
  .hero {
    padding: 100px 0 120px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  /* Capabilities page responsive */
  .capability-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .capability-header h2 {
    font-size: 28px;
  }
  
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .who-card {
    padding: 30px;
  }
  
  /* Footer responsive */
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    justify-content: space-between;
    width: 100%;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }
  
  nav {
    gap: 15px;
  }
  
  nav a {
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .capability-header h2 {
    font-size: 24px;
  }
  
  .capability-description {
    font-size: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
}

/* APPROACH PAGE STYLES */
.approach-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.approach-card {
  display: flex;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 42, 63, 0.08);
  border-color: var(--accent);
}

.approach-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  background: var(--light-blue);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 5px;
}

.approach-content {
  flex: 1;
}

.approach-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}

.approach-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 17px;
}

.approach-points {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.approach-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.approach-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}

.commitment-section {
  text-align: center;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

/* Responsive for Approach Page */
@media (max-width: 768px) {
  .approach-card {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }
  
  .approach-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .approach-card h3 {
    font-size: 20px;
  }
  
  .approach-points li {
    padding-left: 24px;
  }
}

/* CAREERS PAGE STYLES */

.join-section {
  margin-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 42, 63, 0.08);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Positions Section */
.positions-section {
  margin: 80px 0;
}

.position-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.position-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.position-card:hover {
  box-shadow: 0 15px 35px rgba(11, 42, 63, 0.1);
  border-color: var(--accent);
}

.position-header {
  background: var(--light-blue);
  padding: 25px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.position-header h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}

.position-location {
  background: var(--accent);
  color: white;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.position-details {
  padding: 30px;
}

.position-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.position-tag {
  background: #F8FAFC;
  color: var(--navy);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.position-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 16px;
}

.position-requirements h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.position-requirements ul {
  margin: 0 0 25px 20px;
}

.position-requirements li {
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
}

.position-apply {
  display: inline-block;
  text-decoration: none;
}

/* Hiring Process */
.process-section {
  margin: 80px 0;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 30px;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.process-step h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Apply Section */
.apply-section {
  margin-top: 80px;
}

.apply-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}

.apply-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.apply-box p {
  font-size: 17px;
  color: #D6E4F0;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apply-email {
  margin: 30px 0;
}

.apply-email a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.apply-email a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.apply-note {
  font-size: 15px !important;
  color: rgba(214, 228, 240, 0.8) !important;
  margin-top: 15px !important;
  max-width: 700px !important;
}

/* Responsive for Careers Page */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .position-header h3 {
    font-size: 18px;
  }
  
  .position-details {
    padding: 25px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .apply-box {
    padding: 40px 25px;
  }
  
  .apply-box h2 {
    font-size: 26px;
  }
  
  .apply-email a {
    font-size: 18px;
    padding: 12px 25px;
    display: block;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .position-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .position-tag {
    margin-bottom: 5px;
  }
  
  .process-step {
    padding: 20px;
  }
}

/* CONTACT PAGE STYLES - UPDATED */

.contact-main {
  display: flex;
  justify-content: center;
  margin: 60px 0 80px;
}

.contact-email-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(11, 42, 63, 0.05);
  transition: all 0.3s ease;
}

.contact-email-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11, 42, 63, 0.1);
  border-color: var(--accent);
}

.contact-icon {
  font-size: 64px;
  margin-bottom: 30px;
  display: inline-block;
}

.contact-email-card h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.email-primary {
  margin: 40px 0;
}

.primary-email-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--light-blue);
  padding: 25px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.primary-email-link:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 143, 214, 0.15);
}

.email-icon {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

.email-address {
  font-size: 28px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Categories */
.contact-categories {
  margin: 80px 0;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 35px;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 42, 63, 0.08);
}

.category-icon {
  font-size: 40px;
  margin-bottom: 25px;
  display: inline-block;
}

.category-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.category-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Response Section */
.response-section {
  margin: 80px 0 40px;
}

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

.response-item {
  text-align: center;
  padding: 30px;
}

.response-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
}

.response-item h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 600;
}

.response-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Form */
.form-section {
  margin: 80px 0;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-box {
  max-width: 800px;
  margin: 0 auto;
}

.form-box h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.form-box p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 143, 214, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 50px;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
  .contact-email-card {
    padding: 40px 30px;
  }
  
  .contact-email-card h2 {
    font-size: 28px;
  }
  
  .email-address {
    font-size: 22px;
  }
  
  .primary-email-link {
    padding: 20px 30px;
    flex-direction: column;
    gap: 15px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .category-card {
    padding: 30px;
  }
  
  .response-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-email-card {
    padding: 30px 20px;
  }
  
  .contact-email-card h2 {
    font-size: 24px;
  }
  
  .email-address {
    font-size: 18px;
  }
  
  .primary-email-link {
    padding: 15px 20px;
  }
  
  .form-box h2 {
    font-size: 26px;
  }
  
  .contact-form {
    padding: 25px;
  }
}

/* CONTACT FORM - IMPROVED STRUCTURE */

.form-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
}

.form-group label::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 143, 214, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
  opacity: 0.8;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 50px;
  cursor: pointer;
}

.form-group select:required:invalid {
  color: #94A3B8;
}

.form-group select option {
  color: var(--ink);
  background: var(--white);
  padding: 10px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.form-submit .cta-button {
  padding: 14px 42px;
  font-size: 16px;
  font-weight: 500;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Validation Styles */
.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:focus,
.form-group select:valid:focus,
.form-group textarea:valid:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Responsive Form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .form-submit {
    margin-top: 30px;
    padding-top: 25px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 25px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
}






/* PDF Boxes Styles for AIEDR */

.pdf-boxes-section {
    margin: 40px 0;
}

.pdf-boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 30px 0 40px;
}

.pdf-blue-box {
    background-color: #1a3c6e;
    color: white;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pdf-blue-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pdf-blue-box .box-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.pdf-blue-box .box-icon {
    margin-right: 12px;
    font-size: 1.3rem;
    opacity: 0.9;
}

.pdf-blue-box .box-content {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.pdf-blue-box .box-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.pdf-blue-box .box-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pdf-boxes-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-blue-box {
        width: 100%;
        max-width: 100%;
    }
    
    .pdf-blue-box .box-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .pdf-blue-box {
        padding: 25px 20px;
    }
    
    .pdf-blue-box .box-title {
        font-size: 1.2rem;
    }
    
    .pdf-blue-box .box-content {
        font-size: 0.9rem;
    }
}
}





/* PDF Boxes Styles for AIEDR */

.pdf-boxes-section {
    margin: 40px 0;
}

.pdf-boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 30px 0 40px;
}

.pdf-blue-box {
    background-color: #1a3c6e;
    color: white;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pdf-blue-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pdf-blue-box .box-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.pdf-blue-box .box-icon {
    margin-right: 12px;
    font-size: 1.3rem;
    opacity: 0.9;
}

.pdf-blue-box .box-content {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.pdf-blue-box .box-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.pdf-blue-box .box-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pdf-boxes-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-blue-box {
        width: 100%;
        max-width: 100%;
    }
    
    .pdf-blue-box .box-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .pdf-blue-box {
        padding: 25px 20px;
    }
    
    .pdf-blue-box .box-title {
        font-size: 1.2rem;
    }
    
    .pdf-blue-box .box-content {
        font-size: 0.9rem;
    }
}
