/* Add after existing styles */

.general-presentation {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

.section-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.section-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.services {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.services h2 {
  text-align: center;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  max-width: 36rem;
  margin: 0 auto 4rem;
}

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

.service-card {
  background-color: var(--bg-darker);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.icon-wrapper {
  background-color: rgba(224, 7, 45, 0.1);
  width: fit-content;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.icon-wrapper svg {
  color: var(--primary);
}

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

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.learn-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.learn-more:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.ceo-message {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

.message-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .message-content {
    grid-template-columns: 1fr 1fr;
  }
}

.ceo-image {
  position: relative;
}

.ceo-image img {
  width: 100%;
  border-radius: 0.5rem;
  filter: brightness(0.8);
}

.ceo-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.2;
  border-radius: 0.5rem;
}

.message-text h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.message-text blockquote {
  font-size: 1.125rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.ceo-info {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.ceo-info .name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ceo-info .position {
  color: var(--text-gray);
}

.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

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

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

.footer-section p {
  color: var(--text-gray);
  margin-top: 1rem;
}

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

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

.footer-section ul a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.contact-info svg {
  color: var(--primary);
  flex-shrink: 0;
}

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

.social-links a {
  color: var(--text-gray);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--primary);
}

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

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.875rem;
}