/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #00a0d2;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-svg {
  filter: drop-shadow(0 2px 8px rgba(0, 160, 210, 0.4));
  transition: all 0.3s ease;
}

.logo:hover .logo-svg {
  filter: drop-shadow(0 4px 12px rgba(0, 160, 210, 0.6));
}

.logo-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-icon {
  color: #00a0d2;
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a0d2, #ff6b35);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #00a0d2;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #003366 0%, #00a0d2 50%, #003366 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Added decorative elements to hero section */
.hero-decoration {
  position: absolute;
  width: 100%;
  height: 100px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero-decoration-top {
  top: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-decoration-bottom {
  bottom: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-in;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  margin-bottom: 1rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 18px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.feature-icon {
  color: #ff6b35;
  font-size: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #00a0d2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #00a0d2, #003366);
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 36px;
  margin-bottom: 1rem;
  color: #003366;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00a0d2, #ff6b35);
  border-radius: 2px;
}

.section-description {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #003366, #00a0d2, #ff6b35, #00a0d2, #003366);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a0d2, #ff6b35);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #00a0d2;
}

.service-icon {
  color: #00a0d2;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 24px;
  margin-bottom: 1rem;
  color: #003366;
}

.service-description {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.service-tag {
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #003366;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #00a0d2;
}

/* Platform Section */
.platform {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.platform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b35, #00a0d2, #003366, #00a0d2, #ff6b35);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.platform-step {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  position: relative;
}

.platform-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00a0d2, #ff6b35);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.platform-step:hover::before {
  opacity: 1;
}

.platform-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-step-1 .step-number {
  background: linear-gradient(135deg, #003366, #00a0d2);
}

.platform-step-2 .step-number {
  background: linear-gradient(135deg, #00a0d2, #ff6b35);
}

.platform-step-3 .step-number {
  background: linear-gradient(135deg, #ff6b35, #003366);
}

.step-title {
  font-size: 28px;
  margin-bottom: 1rem;
  color: #003366;
}

.step-description {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.step-list {
  list-style: none;
  margin-top: 1.5rem;
}

.step-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.step-list li:last-child {
  border-bottom: none;
}

.step-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00a0d2;
  font-weight: bold;
}

/* Licenses Section */
.licenses {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
  position: relative;
}

.licenses::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #003366, #00a0d2, #ff6b35, #00a0d2, #003366);
}

.licenses-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.license-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
}

.license-item:hover {
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 160, 210, 0.15);
  border-color: #00a0d2;
}

.license-icon {
  color: #00a0d2;
  font-size: 28px;
  margin-right: 1.5rem;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}

.license-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.license-name {
  font-size: 20px;
  color: #003366;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.license-detail {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
}

.licenses-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, #dbeafe, #f0f9ff);
  border-radius: 12px;
  border: 2px solid #00a0d2;
}

.licenses-note p {
  color: #1e293b;
  line-height: 1.8;
  font-size: 16px;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b35, #00a0d2, #003366, #00a0d2, #ff6b35);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00a0d2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #003366;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

.faq-arrow {
  font-size: 24px;
  color: #00a0d2;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #4a5568;
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #003366, #00a0d2, #ff6b35, #00a0d2, #003366);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #003366;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00a0d2;
  box-shadow: 0 0 0 3px rgba(0, 160, 210, 0.1);
}

.form-textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  position: relative;
}

/* Added decorative element to footer */
.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #003366, #00a0d2, #ff6b35, #00a0d2, #003366);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-text {
  color: #cbd5e1;
  line-height: 1.8;
}

.footer-heading {
  font-size: 16px;
  margin-bottom: 1rem;
  color: #00a0d2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #00a0d2;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #cbd5e1;
  transition: all 0.3s ease;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.social-link:hover,
.social-link:focus {
  color: #00a0d2;
  transform: translateY(-3px);
  background: rgba(0, 160, 210, 0.1);
}

/* Added AGCO registration section to footer */
.footer-registration {
  margin: 3rem 0 2rem;
  padding: 2rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.registration-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(0, 160, 210, 0.3);
}

.registration-title {
  font-size: 20px;
  color: #00a0d2;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.registration-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.registration-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #00a0d2;
}

.registration-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.registration-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #334155;
  color: #cbd5e1;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.compliance-notice {
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #334155;
  }

  .menu-toggle:checked ~ .nav-menu {
    max-height: 400px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .license-item {
    flex-direction: column;
    text-align: center;
  }

  .license-content {
    align-items: center;
    text-align: center;
  }

  .registration-details {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
label:focus {
  outline: 2px solid #00a0d2;
  outline-offset: 2px;
}

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

/* Internal Pages */
.internal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.page-hero {
  background: linear-gradient(135deg, #003366 0%, #00a0d2 50%, #003366 100%);
  color: #ffffff;
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 4rem 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.policy-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #00a0d2;
}

.policy-section h3 {
  font-size: 24px;
  color: #00a0d2;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.policy-section p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 16px;
}

.policy-section ul {
  margin: 1rem 0 1rem 2rem;
  color: #4a5568;
  line-height: 1.8;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.policy-section ul li strong {
  color: #003366;
}

.policy-section a {
  color: #00a0d2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.policy-section a:hover,
.policy-section a:focus {
  color: #ff6b35;
  border-bottom-color: #ff6b35;
}

.contact-info {
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #00a0d2;
  margin-top: 1.5rem;
}

.contact-info p {
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 0;
}

.contact-info a {
  color: #00a0d2;
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  border-color: #00a0d2;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.sidebar-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.sidebar-links a:hover,
.sidebar-links a:focus {
  color: #00a0d2;
  background: #f0f9ff;
  transform: translateX(5px);
}

.sidebar-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sidebar-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #00a0d2, #003366);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar-cta:hover,
.sidebar-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 160, 210, 0.4);
}

/* Sitemap Specific Styles */
.sitemap-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sitemap-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.sitemap-section:hover {
  border-color: #00a0d2;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.sitemap-section.full-width {
  grid-column: 1 / -1;
}

.sitemap-section h2 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sitemap-list {
  list-style: none;
}

.sitemap-list li {
  margin-bottom: 0.75rem;
  color: #4a5568;
  padding-left: 1.5rem;
  position: relative;
}

.sitemap-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00a0d2;
  font-weight: bold;
}

.sitemap-list a {
  color: #00a0d2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sitemap-list a:hover,
.sitemap-list a:focus {
  color: #ff6b35;
  text-decoration: underline;
}

.sitemap-list ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.sitemap-list ul li {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.quick-access-card {
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #00a0d2;
  text-align: center;
}

.quick-access-card:hover,
.quick-access-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 160, 210, 0.3);
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.quick-access-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 0.5rem;
}

.quick-access-card p {
  color: #4a5568;
  font-size: 14px;
  margin: 0;
}

/* Contact List */
.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  padding-left: 1.5rem;
  position: relative;
}

.contact-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00a0d2;
  font-weight: bold;
}

/* Footer Section */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #00a0d2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: #00a0d2;
  transform: translateX(5px);
}

.registration-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(0, 160, 210, 0.3);
  margin-top: 1.5rem;
}

.registration-card h4 {
  font-size: 16px;
  color: #00a0d2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.registration-card p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #334155;
  color: #cbd5e1;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.compliance-notice {
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Responsive Design for Internal Pages */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .policy-content {
    padding: 2rem 1.5rem;
  }

  .policy-section h2 {
    font-size: 24px;
  }

  .policy-section h3 {
    font-size: 20px;
  }

  .sitemap-wrapper {
    grid-template-columns: 1fr;
  }

  .quick-access-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 16px;
  }
}
