/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
  --navy: #0a2540;
  --turquoise: #4fd1c5;
  --light-blue: #e6f7f5;
  --white: #ffffff;
  --gray: #64748b;
  --border-gray: #e2e8f0;
  --error-red: #ff4d4d;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease-out;
  --shadow-base: 0 10px 30px rgba(79, 209, 197, 0.3);
  --shadow-hover: 0 10px 15px rgba(79, 209, 197, 0.4);
}

/* ============================================
   BASE STYLES
   ============================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-visual {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.logo, .logo img,
.photo {
  width: 100px;
}

.logo span {
  color: var(--turquoise);
}

.nav-links {
  display: flex;
  column-gap: 2rem;
}

.nav-links a {
  color: var(--turquoise);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color var(--transition-base);
  -moz-transition: color var(--transition-base);
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--navy);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 150px 2rem 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/desktop.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(79,209,197);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(10,37,64);stop-opacity:0.1" /></linearGradient></defs><circle cx="200" cy="100" r="150" fill="url(%23grad)"/><circle cx="900" cy="400" r="200" fill="url(%23grad)"/><circle cx="600" cy="200" r="100" fill="url(%23grad)"/></svg>');
  background-size: cover;
  opacity: 0.6;
  -webkit-animation: float-alt 6s ease-in-out infinite;
  -moz-animation: float-alt 6s ease-in-out infinite;
  animation: float-alt 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  z-index: 0;
  width: 600px;
  height: 600px;
  background: var(--turquoise);
  opacity: 0.08;
  border-radius: 50%;
  -webkit-animation: float 6s ease-in-out infinite;
  -moz-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--turquoise);
}

.hero p {
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  opacity: 0.9;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
/* ============================================
   ANIMATIONS
   ============================================ */

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(5deg);
    transform: translateY(-30px) rotate(5deg);
  }
}

@-moz-keyframes float {
  0%, 100% {
    -moz-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -moz-transform: translateY(-30px) rotate(5deg);
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(5deg);
    -moz-transform: translateY(-30px) rotate(5deg);
    transform: translateY(-30px) rotate(5deg);
  }
}

@-webkit-keyframes float-alt {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(-4deg);
    transform: translateY(20px) rotate(-4deg);
  }
}

@-moz-keyframes float-alt {
  0%, 100% {
    -moz-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -moz-transform: translateY(20px) rotate(-4deg);
    transform: translateY(20px) rotate(-4deg);
  }
}

@keyframes float-alt {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(-4deg);
    -moz-transform: translateY(20px) rotate(-4deg);
    transform: translateY(20px) rotate(-4deg);
  }
}

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

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

@keyframes float-image {
  0%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--turquoise);
  color: var(--navy);
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--turquoise);
  color: var(--turquoise);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

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

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.section-subtitle {
  margin-bottom: 4rem;
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 50px 2rem 100px;
  background: var(--white);
}

.service-item {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  margin-bottom: 6rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all var(--transition-slow);
  -moz-transition: all var(--transition-slow);
  transition: all var(--transition-slow);
}

.service-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 400px;
  padding: 2rem;
  /* background: linear-gradient(135deg, rgba(79, 209, 197, 0.22), rgba(56, 178, 172, 0.69)); */
  border-radius: 20px;
  font-size: 6rem;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  /* -webkit-box-shadow: var(--shadow-base);
  -moz-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base); */
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}

.service-visual-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-transition: opacity var(--transition-base);
  -moz-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}

/* Animation de flottement déclenchée par JavaScript */
.service-visual-inner img.floating-active {
  -webkit-animation: float-image 4s ease-in-out infinite;
  -moz-animation: float-image 4s ease-in-out infinite;
  animation: float-image 4s ease-in-out infinite;
}

.service-visual-inner img.floating-active.fast {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
}

.service-visual-inner img.floating-active.slow {
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  animation-duration: 5s;
}

/* Effet hover sur le conteneur */
/* .service-item:hover .service-visual-inner {
  -webkit-box-shadow: var(--shadow-hover);
  -moz-box-shadow: var(--shadow-hover);
  box-shadow: var(--shadow-hover);
} */
.service-item:hover .service-content, .is-active {
  -webkit-box-shadow: var(--shadow-hover);
  -moz-box-shadow: var(--shadow-hover);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05) rotate(0.5deg);
  background: linear-gradient(135deg, rgb(79 209 197 / 14%), rgb(56 178 172 / 31%));
  /* transition: box-shadow var(--shadow-hover); */
}
.service-item.reverse:hover .service-content, .service-item.reverse .is-active {
  transform: scale(1.05) rotate(-0.5deg);
  /* transition: box-shadow var(--shadow-hover); */
}
.service-content {
    flex: 1;
    /* background: linear-gradient(135deg, rgb(79 209 197 / 14%), rgb(56 178 172 / 31%)); */
    padding: 2rem;
    border-radius: 20px;
    transition: 
    transform 0.3s ease, 
    box-shadow 0.2s ease; 
}

.service-content h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--navy);
}

.service-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.service-content ul {
  list-style: none;
}

.service-content li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2rem;
  font-size: 1rem;
  color: var(--gray);
  font-weight: bold;
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: lightgreen;
  /* color: var(--turquoise); */
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about,
.legal-section,
.privacy-section {
  padding: 100px 2rem 50px 2rem;
  background: var(--light-blue);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--turquoise);
}

.stat-label {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   LEGAL & PRIVACY SECTIONS
   ============================================ */

.legal-section h1.section-title,
.privacy-section h1.section-title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
}

.privacy-section .last-updated {
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--gray);
  text-align: center;
}

.legal-block,
.privacy-block {
  margin-bottom: 2.5rem;
}

.legal-block h2,
.privacy-block h2 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  color: var(--navy);
}

.legal-block p,
.privacy-block p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.privacy-list {
  margin-bottom: 1rem;
  padding-left: 1rem;
  list-style: none;
}

.privacy-list li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--gray);
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--turquoise);
}

.legal-section a,
.privacy-section a {
  color: var(--turquoise);
  text-decoration: none;
  -webkit-transition: color var(--transition-base);
  -moz-transition: color var(--transition-base);
  transition: color var(--transition-base);
}

.legal-section a:hover,
.privacy-section a:hover {
  color: var(--navy);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 100px 2rem;
  background: var(--white);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  -webkit-box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
  -moz-box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

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

/* Error states */
input[type="text"].error,
input[type="email"].error,
textarea.error {
  border-color: var(--error-red) !important;
}

.error-message {
  display: block;
  margin-top: 0.3rem !important;
  font-size: 0.8rem !important;
  color: var(--error-red) !important;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--turquoise), #38b2ac);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  transition: all var(--transition-base);
}

.submit-btn:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-base);
  -moz-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 3rem 2rem 2rem;
  background: var(--navy);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  place-items: start center;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--turquoise);
}

.footer-section p {
  max-width: 245px;
  text-align: justify;
}

.footer-section p,
.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: color var(--transition-base);
  -moz-transition: color var(--transition-base);
  transition: color var(--transition-base);
}

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(79, 209, 197, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  transition: all var(--transition-base);
  img{
    width: 100%;
  }
}

.social-links a:hover {
  background: var(--turquoise);
  color: var(--navy);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  transform: translateY(-3px);
}

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

.footer-bottom a {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  -webkit-transition: color var(--transition-base);
  -moz-transition: color var(--transition-base);
  transition: color var(--transition-base);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all var(--transition-slow);
  -moz-transition: all var(--transition-slow);
  transition: all var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* ============================================
   MENU BURGER & NAVIGATION MOBILE
   ============================================ */

/* Styles pour le bouton du menu burger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

/* Animation du bouton burger en croix */
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Styles pour le menu mobile */

@media (max-width: 968px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
    gap: 2rem;
  }
  .service-item:hover .service-content, .is-active {
    transform: scale(1) rotate(0deg);
  }
  .service-item.reverse:hover .service-content, .service-item.reverse .is-active {
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 768px) {
  /* .nav-links {
    display: none;
  } */
  .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 80px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    margin: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 15px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a:hover {
    color: var(--turquoise);
    background-color: rgba(79, 209, 197, 0.05);
  }

  /* Désactiver le défilement du corps lorsque le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .service-content h3 {
    font-size: 1.6rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-item:hover .service-content, .is-active {
    transform: scale(1) rotate(0deg);
  }
  .service-item.reverse:hover .service-content, .service-item.reverse .is-active {
    transform: scale(1) rotate(0deg);
  }
  .about-profile-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.about-profile {
  background: var(--light-blue);
  padding: 0 0 100px 0;
  /* padding: 0 2rem 100px; */
  /* margin-top:3rem; */
  .container {
    border-top: 1px solid #d3d3d37a;
  }
}

.about-profile-inner {
  max-width: 800px;
  padding: 2rem;
  /* même largeur que about-content */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-profile-visual {
  flex: 0 0 200px;
}

.about-profile-visual img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
      background: white;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.25);
}

.about-profile-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-profile-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .about-profile {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-profile-content {
    text-align: center;
  }
}