/* Fintech Integration page styles */
.fintech-hero {
  width: 100%;
  background: url('../Media/Images/GettyImages1234-904040614.jpeg') center/cover;
  background-attachment: fixed;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fintech-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 42, 102, 0.6);
  z-index: 1;
}

.fintech-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.fintech-hero h1 {
  font-size: 68px;
  font-weight: 800;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fintech-hero p {
  font-size:30px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fintech-hero {
    padding: 60px 16px;
    min-height: 300px;
  }
  
  .fintech-hero h1 {
    font-size: 32px;
  }
  
  .fintech-hero p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .fintech-hero h1 {
    font-size: 28px;
  }
  
  .fintech-hero p {
    font-size: 16px;
  }
}

/* About Fintech Integration Section */
.fintech-about-section {
  padding: 60px 0;
  background: #ffffff;
}

.fintech-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.fintech-about-content {
  display: flex;
  flex-direction: column;
}

/* Right to Middle Heading */
.fintech-about-header {
  text-align: right;
  margin-bottom: 24px;
}

.fintech-about-title {
  font-size: 32px;
  color: #082a66;
  margin: 0;
  line-height: 1.3;
  font-weight: 800;
}

/* Left to Middle Description Text */
.fintech-about-text {
  text-align: left;
}

.fintech-about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #243249;
  margin: 0 0 20px 0;
}

.fintech-about-text p:last-child {
  margin-bottom: 0;
}

/* Getty Images Photo */
.fintech-about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fintech-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 42, 102, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .fintech-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }
  
  .fintech-about-header {
    text-align: center;
  }
  
  .fintech-about-title {
    font-size: 24px;
  }
  
  .fintech-about-text {
    text-align: center;
  }
  
  .fintech-about-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .fintech-about-section {
    padding: 40px 0;
  }
  
  .fintech-about-title {
    font-size: 20px;
  }
  
  .fintech-about-text p {
    font-size: 14px;
  }
}

/* Mastering Fintech Integration Section */
.fintech-mastering-section {
  padding: 0;
  background: #ffffff;
}

.fintech-mastering-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* Dark Blue Background Content (Middle to Left) */
.fintech-mastering-content {
  background: #082a66;
  color: #ffffff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fintech-mastering-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.3;
  color: #ffffff;
}

.fintech-mastering-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px 0;
}

.fintech-mastering-text p:last-child {
  margin-bottom: 0;
}

.fintech-mastering-text p strong {
  color: #ffffff;
  font-weight: 700;
}

/* Adobe Stock Image (Right to Middle) */
.fintech-mastering-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.adobe-stock-mastering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design for Mastering Section */
@media (max-width: 768px) {
  .fintech-mastering-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .fintech-mastering-content {
    padding: 40px 20px;
  }
  
  .fintech-mastering-title {
    font-size: 28px;
  }
  
  .fintech-mastering-text p {
    font-size: 15px;
  }
  
  .adobe-stock-mastering-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .fintech-mastering-content {
    padding: 30px 16px;
  }
  
  .fintech-mastering-title {
    font-size: 24px;
  }
  
  .fintech-mastering-text p {
    font-size: 14px;
  }
  
  .adobe-stock-mastering-image {
    height: 250px;
  }
}
