/* Founder Section Styles */
.founder-section {
  padding: 2.1rem 0 7rem 0; /* Reduced top padding by 70%, kept bottom padding */
  background-color: #ffe8e4; /* Updated background color */
  position: relative;
  overflow: hidden;
  color: #333;
}

.founder-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none; /* Removed pattern */
  z-index: 1;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .founder-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.founder-image-container {
  position: relative;
  width: 100%;
  max-width: 400px; /* Increased from 350px */
  margin-bottom: 2rem;
  transform: rotate(-3deg); /* Tilt the image */
}

/* Add tape corners to the image */
.founder-image-container::before,
.founder-image-container::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 25px;
  background-color: rgba(70, 130, 180, 0.7); /* Changed to blue */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.founder-image-container::before {
  top: -10px;
  left: -10px;
  transform: rotate(-45deg);
}

.founder-image-container::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .founder-image-container {
    margin-bottom: 0;
    flex: 0 0 400px;
  }
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: translateY(-5px);
}

.founder-image-bg {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: #0a4697;
  border-radius: 12px;
  z-index: 1;
  transition: transform 0.3s ease 0.1s;
}

.founder-image-container:hover .founder-image-bg {
  transform: translate(5px, 5px);
}

.founder-content {
  flex: 1;
  position: relative;
}

.founder-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.founder-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F3471F;
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
}

.founder-title {
  font-family: 'Giaza', serif;
  color: #0a4697;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.founder-title .highlight {
  color: #F3471F;
  position: relative;
  display: inline-block;
}

.founder-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #F3471F;
}

.founder-text {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 95%;
  margin-left: 20px; /* Move text to the right */
}

.founder-text p {
  margin-bottom: 1.2rem;
}

.founder-text p:last-child {
  margin-bottom: 0;
}

.founder-text .question {
  font-size: 1.4rem;
  font-weight: 500;
  color: #0a4697;
}

.founder-text .statement {
  font-size: 1.3rem;
}

.founder-text .emphasis-block {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F3471F;
  margin: 1.5rem 0;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-left: 4px solid #F3471F;
  background-color: rgba(243, 71, 31, 0.05);
}

.founder-text .closing-statement {
  font-size: 1.3rem;
  font-weight: 500;
}

.founder-text .highlight-text {
  color: #F3471F;
  font-weight: 700;
  position: relative;
}

.founder-signature {
  font-weight: 500;
  font-size: 1.1rem;
  color: #333;
  margin: 2.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #0a4697;
}

.signature-dash {
  font-weight: 700;
  margin-right: 0.5rem;
  color: #0a4697;
}

.signature-title {
  color: #0a4697;
  font-weight: 600;
}

.founder-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(10, 70, 151, 0.05) 0%, rgba(243, 71, 31, 0.05) 100%);
  border-radius: 12px;
  position: relative;
}

.founder-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #0a4697, #F3471F);
  border-radius: 5px 0 0 5px;
}

.founder-cta-title {
  color: #0a4697;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.founder-cta-text {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #F3471F;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(243, 71, 31, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 71, 31, 0.4);
  background-color: #e13d17;
}

/* Decorative elements removed */

/* Placeholder for when no image is available */
.founder-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #96B0D7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  min-height: 400px;
}

.founder-image-placeholder::before {
  content: 'LM';
  font-size: 4rem;
  opacity: 0.8;
}
