.advantages-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.advantages-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #273b35;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* Two Columns with Checkboxes Layout */
.advantages-two-columns {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.advantages-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.advantage-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #273b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.advantage-check svg {
  width: 18px;
  height: 18px;
}

.advantage-item .advantage-content {
  flex: 1;
  padding: 0;
}

.advantage-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #273b35;
}

.advantage-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.advantages-cta {
  text-align: center;
  margin-top: 3rem;
}

.advantages-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: #273b35;
  border-color: #273b35;
  transition: all 0.3s ease;
}

.advantages-cta .btn:hover {
  background-color: #1a2925;
  border-color: #1a2925;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .advantages-two-columns {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .advantages-two-columns {
    padding: 0;
  }

  .advantage-item {
    gap: 1rem;
  }

  .advantage-check {
    width: 28px;
    height: 28px;
  }

  .advantage-check svg {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1.1rem;
  }
}

/* Experience Section Styles */
.experience-section {
  padding: 6rem 0;
  background-color: #fff;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-text {
  flex: 1;
}

.experience-text .section-title {
  margin-bottom: 2rem;
  text-align: left;
}

.experience-description {
  color: #666;
  line-height: 1.8;
}

.experience-description p {
  margin-bottom: 1.5rem;
}

.experience-description p:last-child {
  margin-bottom: 0;
}

.experience-image {
  flex: 1;
  position: relative;
}

.experience-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.experience-img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .experience-content {
    flex-direction: column;
    gap: 2rem;
  }

  .experience-text {
    text-align: center;
  }

  .experience-text .section-title {
    text-align: center;
  }

  .experience-image {
    order: -1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .experience-section {
    padding: 4rem 0;
  }

  .experience-content {
    gap: 1.5rem;
  }
}

/* Process Section Styles */
#primary .hentry .process-section {
  background-color: #f0f2f1;
  padding: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 2px;
  height: 100%;
  background-color: #273b35;
  opacity: 0.2;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #273b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step-content h3 {
  color: #273b35;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 4rem;
}

.process-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: #273b35;
  border-color: #273b35;
  transition: all 0.3s ease;
}

.process-cta .btn:hover {
  background-color: #1a2925;
  border-color: #1a2925;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 25px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-right: 1.5rem;
  }

  .step-content {
    padding: 1.25rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  #primary .hentry .process-section {
    padding: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .process-intro {
    margin-bottom: 3rem;
  }

  .process-timeline {
    padding: 1rem 0;
  }

  .process-step {
    margin-bottom: 2rem;
  }
}

/* Story Section Styles */
.story-section {
  padding: 6rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  flex: 1;
}

.story-text .section-title {
  margin-bottom: 2rem;
  color: #273b35;
  font-size: 2.5rem;
  line-height: 1.2;
}

.story-description {
  color: #666;
  line-height: 1.8;
}

.story-description p {
  margin-bottom: 1.5rem;
}

.story-description p:last-child {
  margin-bottom: 0;
}

.story-image {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.story-image:hover .story-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(39, 59, 53, 0.9), transparent);
  padding: 2rem;
  color: white;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.overlay-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.overlay-subtext {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
    gap: 3rem;
  }

  .story-text {
    text-align: center;
  }

  .story-text .section-title {
    font-size: 2rem;
  }

  .story-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .story-section {
    padding: 4rem 0;
  }

  .story-content {
    gap: 2rem;
  }

  .story-text .section-title {
    font-size: 1.75rem;
  }

  .image-overlay {
    padding: 1.5rem;
  }

  .overlay-text {
    font-size: 1.25rem;
  }

  .overlay-subtext {
    font-size: 1rem;
  }
}

/* Contact Form Section Styles */
.franchise-contact {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro .section-title {
  color: #273b35;
  margin-bottom: 1rem;
}

.contact-description {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
  .franchise-contact {
    padding: 4rem 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-intro {
    margin-bottom: 2rem;
  }

  .contact-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .franchise-contact {
    padding: 3rem 0;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* Grid Layout Alternative */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.advantages-grid .advantage-box {
  margin-top: 0;
  height: auto;
}

.advantages-grid .advantage-icon {
  top: -10px;
  right: -10px;
}

@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
