/*
Theme Name: Europeaan Business Booster
Author: Your Name
Description: Strategic investments in defense technologies, critical infrastructure and innovative startups for a safer Europe.
Version: 1.0
*/

:root {
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(0 70% 35%), hsl(0 70% 50%));
  --primary-foreground: 0 0% 100%;
  --primary-glow: 0 70% 50%;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --shadow-glow: 0 0 50px hsl(var(--primary-glow) / 0.4);
  --tw-shadow: var(--shadow-glow);
}

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

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  color: white;
  background: black;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

/* Hero section - exact match from React */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/hero-europe-map-2d.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(0 0% 0%) 0%,
    hsl(0 0% 10%) 50%,
    hsl(0 0% 20%) 100%
  );
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-accent {
  display: block;
  background: linear-gradient(
    135deg,
    hsl(43 95% 75%),
    hsl(43 95% 85%),
    hsl(43 95% 80%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 = 0.5rem */
  white-space: nowrap;
  transition: all 0.3s; /* duration-300 + transition-all */
  outline: none;
  border: 0;
  font-weight: 600; /* font-semibold */
  height: 2.75rem; /* h-11 = 44px = 2.75rem */
  border-radius: 0.375rem; /* rounded-md */
  font-size: 1.125rem; /* text-lg */
  padding: 1rem 2rem; /* py-4 = 1rem, px-8 = 2rem */
  background: var(
    --gradient-primary
  ); /* bg-gradient-primary (assumes CSS var or class) */
  color: var(
    --primary-foreground
  ); /* text-primary-foreground (assumes CSS var or class) */
}

.btn:hover {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transform: scale(1.05);
}

.btn-hero {
  background: linear-gradient(135deg, hsl(0 70% 35%), hsl(0 70% 50%));
  color: white;
}

.btn-outline {
  background: #dc2626;
  border: 1px solid #dc2626;
  color: white;
}

/* Why Choose Us Section */
.why-choose-us {
  background: black;
  color: white;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: black;
  border: 1px solid rgba(234, 179, 8, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(234, 179, 8, 0.3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: black;
  border: 1px solid rgba(234, 179, 8, 0.5);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Business Stages Section */
.business-stages {
  background-color: #a68053;
  padding: 5rem 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.business-card {
  background: black;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  border: 1px solid #e5e7eb;
}

.business-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.business-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-content {
  padding: 1.5rem;
}

.business-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.business-content p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Services Section */
.services {
  background: black;
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.service-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: black;
  border: 1px solid #eab308;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(234, 179, 8, 0.3);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: black;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  box-shadow: 0 0 40px rgba(234, 179, 8, 0.4);
}

.service-icon svg {
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.service-card p {
  color: #d1d5db;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Expert Guidance Section */
.expert-guidance {
  background: black;
  padding: 5rem 0;
}

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

.expertise-card {
  background: black;
  border: 1px solid #facc15;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.expertise-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .expertise-image {
    aspect-ratio: 16/9;
  }
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-image img {
  transform: scale(1.05);
}

.expertise-content {
  padding: 1.5rem;
}

.expertise-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.expertise-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background-color: #a68053;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  line-height: 1.1;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 1.25rem;
  opacity: 0.8;
  font-weight: 500;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Process Section */
.process {
  background: black;
  padding: 5rem 0;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.process-accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  transition: opacity 0.3s;
}

.accordion-header:hover {
  opacity: 0.8;
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.accordion-icon svg {
  color: white;
}

.chevron {
  margin-left: auto;
  transition: transform 0.3s;
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  padding-left: 4rem;
  padding-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.process-image {
  width: 100%;
  height: 24rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .process-image {
    display: none;
  }
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team Section */
.team {
  background-color: #a68053;
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
  transform: scale(1.05);
}

.member-image {
  width: 12rem;
  height: 16rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(
    135deg,
    hsl(0 0% 0%) 0%,
    hsl(0 0% 10%) 50%,
    hsl(0 0% 20%) 100%
  );
  padding: 5rem 0;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  color: #facc15;
}

.testimonial-card p {
  color: white;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-category {
  color: #facc15;
  font-weight: 600;
}

/* CTA Section */
.cta {
  background: black;
  color: white;
  padding: 5rem 0;
  max-width: 1190px;
  margin: 0 auto;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.cta-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.cta-image img {
  width: 100%;
  height: auto;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  background-color: #a68053;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

.cta-stats .stat-number {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.cta-stats .stat-label {
  font-size: 1rem;
  line-height: 1.5rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: black;
  border: 1px solid #eab308;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-form p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input:not([type="submit"]),
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #374151;
  background: white;
  color: black;
  font-size: .875rem;
  line-height: 1.25rem;
  width: 100%;
}

input[type="submit"]{
  font-size: .875rem;
  line-height: 1.25rem;
  height: auto;
  padding: 0.75rem 2rem;
}

.contact-form input:not([type="submit"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #eab308;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  background: black;
  padding: 2rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Callback Service Expandable Styles */
.contact-method.callback-service {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-method.callback-service:hover {
  background: rgba(255, 255, 255, 0.15);
}

.callback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
}

.callback-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.callback-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.callback-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.callback-chevron.open {
  transform: rotate(180deg);
}

.callback-form-container {
  padding: 0 1rem 1rem 1rem;
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.callback-form-container.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callback-input,
.callback-select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.callback-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.callback-input:focus,
.callback-select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.callback-select {
  cursor: pointer;
}

.callback-select option {
  background: #1a1a1a;
  color: white;
}

.callback-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.callback-submit:hover {
  background: white;
  color: black;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.callback-submit:active {
  transform: translateY(0);
}

/* Footer */
.footer-separator {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  background: black;
}

.footer-separator::after {
  content: "";
  width: 8rem;
  height: 0.5px;
  background: white;
}

.footer {
  background: black;
  color: white;
  padding: 3rem 0;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

.footer-section ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #eab308;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-powered {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .process-content,
  .cta-content,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

/* Secondary pages */
body.secondary {
  background: #fff;
}

.secondary .content-wrapper {
  color: #111827;
}

.secondary-pages-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.secondary-pages-nav .back-button {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
  padding: 8px 16px;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.secondary-pages-nav .back-button:hover {
  background-color: #f3f4f6;
}

.secondary-pages-main-content {
  padding: 64px 0;
}

.secondary-pages-main-content .content-wrapper {
  max-width: 1024px;
}

.secondary-pages-main-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111827;
}

.secondary-pages-main-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.secondary-pages-main-content h3 {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.secondary-pages-main-content section {
  margin-bottom: 24px;
}

.secondary-pages-main-content p {
  color: rgba(55, 65, 81, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

.secondary-pages-main-content ul {
    padding-left: 40px;
}

.secondary-pages-main-content li {
    color: rgba(55, 65, 81, 0.8);
    line-height: 1.4;
    margin-bottom: 16px;
}