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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}


/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.logo {
  z-index: 1002;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.navbar {
  width: fit-content;
  max-width: 900px;
  padding: 10px 38px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.navbar a {
  text-decoration: none;
  color: #212121;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s;
  white-space: nowrap;
}

.navbar a:hover {
  background: #E5E7EB;
}

.lang-btn {
  padding: 10px 22px;
  background: transparent;
  color: #4B5563;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #E5E7EB;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.hamburger-menu i {
  font-size: 24px;
  color: #212121;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: -10px;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 100px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: #E5E7EB;
}

.mobile-menu .lang-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    gap: 6px;
    padding: 10px 25px;
  }
  
  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .lang-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    height: 70px;
  }
  
  .header-inner {
    width: 95%;
    justify-content: space-between;
  }
  
  .logo img {
    height: 70px;
  }
  
  .navbar {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

/* ================= END HEADER ================= */

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 3;
    margin: 0 auto;
}

.hero-content p {
    font-size: 21px;
    line-height: 1.8;
    font-weight: 500;
    padding: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ================= RESPONSIVE HERO ================= */
@media (min-width: 1920px) {
    .hero::before {
        background-size: cover;
    }
}

@media (max-width: 1600px) {
    .hero-content {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        max-width: 700px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 85%;
        padding: 15px;
    }
    
    .hero-content p {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 90px;
    }
    
    .hero::before {
      background-position: right top;
      transform: scale(1.05);
     filter: blur(3px);
    }
    
    
    .hero-content {
        max-width: 90%;
        padding: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 10px;
    }
    
    .hero-content p {
        font-size: 15px;
        line-height: 1.5;
        padding: 12px;
    }
}

@media (max-width: 375px) {
    .hero {
        min-height: 65vh;
    }
    
    .hero-content p {
        font-size: 14px;
        line-height: 1.4;
    }
}

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

/* ================= CONTENT BOX WRAPPER -- ABOUT ================= */
.content-box-wrapper {
  background: linear-gradient(180deg, #30166e 0%, #3e46ac 100%);
  padding: 50px 7% 50px;
  position: relative;
  z-index: 3;
}

.content-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, 
    rgba(232, 237, 255, 0.95) 0%,
    rgba(222, 232, 255, 0.92) 100%
  );
  border-radius: 32px;
  padding: 65px 80px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* Logo DCI */
.dci-logo {
  text-align: center;
  margin-bottom: 40px;
}

.dci-logo img {
  height: 110px;
  width: auto;
  max-width: 100%;
}

/* Tagline */
.tagline {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.5;
  margin-bottom: 60px;
}

/* History Section */
.history-container {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 55px;
  align-items: center;
}

.history-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  height: auto;
}

.history-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 20px;
  position: relative;
}

.history-paragraph {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 20px;
}

.history-paragraph .line {
  width: 10px;
  background: linear-gradient(180deg, #413fb5, #8B5CF6);
  border-radius: 4px;
  flex-shrink: 0;
}

.history-paragraph p {
  font-size: 15px;
  line-height: 1.8;
  color: #4B5563;
  margin: 0;
}

/* ================= WHO WE SERVE SECTION ================= */
.serve-section {
  background: linear-gradient(0deg, #4359c5 0%, #3e46ac 100%);
  padding: 85px 7%;
  margin: 0;
}

.serve-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 60px;
  align-items: center;
}

.serve-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  position: relative;
}

.serve-paragraph {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.serve-paragraph .line {
  width: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  flex-shrink: 0;
}

.serve-paragraph p {
  font-size: 15px;
  line-height: 1.85;
  color: white;
  margin: 0;
}

.serve-image img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  height: auto;
}

/* ================= QUOTE SECTION ================= */
.quote-section {
  background: linear-gradient(180deg, #4359c5 0%, #4767d7 100%);
  padding: 70px 7%;
  margin: 0;
}

.quote-box {
  max-width: 1050px;
  margin: 0 auto;
  background: linear-gradient(-90deg, #5325be 0%, #1e1d76 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  padding: 50px 65px;
}

.quote-box p {
  font-size: 16px;
  line-height: 1.85;
  color: white;
  font-weight: 400;
  text-align: center;
}

/* ================= FOUNDATION SECTION ================= */
.foundation-section {
  background: linear-gradient(0deg, #9aabff 0%, #4767d7 100%);
  padding: 85px 7%;
  margin: 0;
}

.foundation-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 60px;
  align-items: center;
}

.foundation-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  position: relative;
}

.foundation-paragraph {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.foundation-paragraph .line {
  width: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  flex-shrink: 0;
}

.foundation-paragraph p {
  font-size: 15px;
  line-height: 1.85;
  color: white;
  margin: 0;
}

.foundation-image img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  height: auto;
}

/* ================= VISION MISSION SECTION ================= */
.vm-section {
  background: linear-gradient(90deg, #1E1E74 0%, #1c1c70 100%);
  padding: 95px 7%;
  text-align: center;
  color: white;
  margin: 0;
}

.vm-section h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 60px;
}

.vm-section h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
}

.vision-box {
  max-width: 950px;
  margin: 0 auto 70px;
  background: rgba(255, 255, 255, 0.95);
  padding: 46px 60px;
  border-radius: 24px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
}

.vision-box p {
  font-size: 17px;
  line-height: 1.75;
  color: #1F2937;
  font-weight: 500;
}

.mission-grid {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 36px 45px;
  border-radius: 22px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  display: flex;
  gap: 36px;
  align-items: center;
  transition: all 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.mission-number {
  font-size: 68px;
  font-weight: 900;
  background: linear-gradient(135deg, 
    rgba(91, 33, 182, 1) 0%, 
    rgba(79, 55, 138, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  min-width: 90px;
}

.mission-divider {
  width: 2px;
  height: 80px;
  background: rgba(79, 55, 138, 0.35);
  flex-shrink: 0;
}

.mission-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1F2937;
  font-weight: 500;
  text-align: left;
  flex: 1;
}

/* ================= STATS SECTION ================= */
.stats-section {
  background: linear-gradient(135deg, #d4ddef 100%);
  padding: 75px 7%;
  text-align: center;
  color: #4F378A;
  margin: 0;
}

.stats-section p {
  font-size: 18px;
  line-height: 1.85;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
}

/* ================= TEAM SECTION ================= */
.team-section {
  background: linear-gradient(90deg, #1E1E74 0%, #1c1c70 100%);
  padding: 95px 7%;
  text-align: center;
  color: white;
  margin: 0;
}

.team-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 65px;
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.team-photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 24px 20px;
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
}

.team-info p {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

/* ================= FOOTER ================= */
footer {
  padding: 80px 7% 30px;
  background: #4532C8;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text h3 {
  font-size: 21.2px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-brand-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.8;
}

.footer-brand > p {
  font-size: 14.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #6366F1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-section h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.footer-section p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #6366F1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1600px) {
  .content-box, .serve-grid, .foundation-grid, .team-grid {
    max-width: 1400px;
  }
}

@media (max-width: 1400px) {
  .content-box, .serve-grid, .foundation-grid, .team-grid {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .content-box {
    padding: 55px 60px;
  }
  
  .history-container,
  .serve-grid,
  .foundation-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .serve-image img,
  .foundation-image img {
    margin: 0 auto;
    max-width: 500px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .content-box-wrapper,
  .serve-section,
  .foundation-section,
  .vm-section,
  .team-section,
  .stats-section {
    padding: 60px 5%;
  }
  
  .content-box {
    padding: 45px 40px;
    border-radius: 28px;
  }
  
  .tagline {
    font-size: 20px;
    margin-bottom: 50px;
  }
  
  .history-text h2,
  .serve-text h2,
  .foundation-text h2 {
    font-size: 30px;
  }
  
  .history-paragraph,
  .serve-paragraph,
  .foundation-paragraph {
    gap: 20px;
  }
  
  .history-paragraph p,
  .serve-paragraph p,
  .foundation-paragraph p {
    font-size: 14px;
  }
  
  .vm-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .vm-section h3 {
    font-size: 28px;
  }
  
  .vision-box {
    padding: 40px 50px;
    margin-bottom: 60px;
  }
  
  .mission-card {
    padding: 30px 35px;
    gap: 30px;
  }
  
  .mission-number {
    font-size: 60px;
    min-width: 80px;
  }
  
  .mission-divider {
    height: 70px;
  }
  
  .mission-text {
    font-size: 15px;
  }
  
  .team-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  .team-grid {
    gap: 20px;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .content-box-wrapper {
    padding: 40px 4% 50px;
  }
  
  .content-box {
    padding: 35px 30px;
    border-radius: 24px;
  }
  
  .dci-logo img {
    height: 90px;
  }
  
  .tagline {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.4;
  }
  
  .history-paragraph,
  .serve-paragraph,
  .foundation-paragraph {
    flex-direction: column;
    gap: 15px;
  }
  
  .history-paragraph .line,
  .serve-paragraph .line,
  .foundation-paragraph .line {
    width: 60px;
    height: 4px;
  }
  
  .quote-box {
    padding: 40px 30px;
    border-radius: 24px;
  }
  
  .quote-box p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .vm-section {
    padding: 60px 5%;
  }
  
  .vm-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .vm-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .vision-box {
    padding: 35px 30px;
    margin-bottom: 50px;
    border-radius: 20px;
  }
  
  .vision-box p {
    font-size: 16px;
  }
  
  .mission-card {
    flex-direction: column;
    padding: 25px 30px;
    gap: 20px;
    text-align: center;
  }
  
  .mission-number {
    font-size: 50px;
    min-width: auto;
  }
  
  .mission-divider {
    width: 60px;
    height: 2px;
  }
  
  .mission-text {
    text-align: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .team-photo {
    height: 280px;
  }
  
  .stats-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .content-box-wrapper,
  .serve-section,
  .foundation-section,
  .quote-section,
  .vm-section,
  .team-section,
  .stats-section {
    padding: 40px 15px;
  }
  
  .content-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .dci-logo img {
    height: 80px;
  }
  
  .tagline {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .history-text h2,
  .serve-text h2,
  .foundation-text h2 {
    font-size: 26px;
  }
  
  .history-paragraph p,
  .serve-paragraph p,
  .foundation-paragraph p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .serve-image img,
  .foundation-image img {
    border-radius: 15px;
  }
  
  .quote-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .quote-box p {
    font-size: 14px;
  }
  
  .vm-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .vm-section h3 {
    font-size: 24px;
  }
  
  .vision-box {
    padding: 30px 25px;
    margin-bottom: 40px;
  }
  
  .mission-card {
    padding: 20px 25px;
  }
  
  .mission-number {
    font-size: 45px;
  }
  
  .mission-text {
    font-size: 14px;
  }
  
  .team-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .stats-section p {
    font-size: 15px;
  }
  
  footer {
    padding: 50px 20px 30px;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 375px) {
  .content-box {
    padding: 25px 15px;
  }
  
  .tagline {
    font-size: 15px;
  }
  
  .history-text h2,
  .serve-text h2,
  .foundation-text h2 {
    font-size: 24px;
  }
  
  .vision-box p {
    font-size: 15px;
  }
  
  .mission-card {
    padding: 18px 20px;
  }
  
  .mission-number {
    font-size: 40px;
  }
  
  .team-photo {
    height: 220px;
  }
}
