.image-content-section {
  padding: 80px 0;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.image-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 100, 255, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.image-container:hover {
  transform: translateY(-5px);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image:hover {
  transform: scale(1.03);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 115, 232, 0.9);
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  text-align: center;
}

.text-content {
  flex: 1;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.image-content-section {
  padding: 80px 0;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.image-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 100, 255, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.image-container:hover {
  transform: translateY(-5px);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image:hover {
  transform: scale(1.03);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 115, 232, 0.9);
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  text-align: center;
}

.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header {
  margin-bottom: 20px;
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
  width: 100%;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
  width: 100%;
}

.section-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
  width: 100%;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.3s ease;
  fill: currentColor;
}

.cta-button .icon {
  transform: scale(1.1);
}

.video-button .icon {
  transform: scale(1.1);
}

.cta-button:hover .icon {
  transform: scale(1.2);
}

.video-button:hover .icon {
  transform: scale(1.2) translateX(2px);
}

.cta-button {
  background-color: white;
  color: #2ecc71;
  border: 2px solid #2ecc71;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 220px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #00c917;
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button span {
  position: relative;
  transition: color 0.4s ease;
}

.cta-button:hover span {
  color: white;
}

.video-button {
  background-color: white;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 220px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.video-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1a73e8;
  transition: width 0.4s ease;
  z-index: -1;
}

.video-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

.video-button:hover::before {
  width: 100%;
}

.video-button span {
  position: relative;
  transition: color 0.4s ease;
}

.video-button:hover span {
  color: white;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .image-container {
    margin-bottom: 30px;
  }
  
  .text-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-button, .video-button {
    width: 200px;
    padding: 10px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

.modal {
  display: none; position: fixed; z-index: 999;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
}
.modal-content {
  margin: 5% auto; width: 80%; max-width: 720px;
  background: #000; border-radius: 8px;
  position: relative;
}
.modal-content video { width: 100%; border-radius: 8px; }
.close {
  position: absolute; top: -10px; right: -40px;
  width:30px; 
  font-size: 28px; color: white; cursor: pointer;
}

.close:hover {
  background-color: #ff0000; 
  border-color: #ff0000;
}

/*Result section*/
.pyrolysis-section-c {
    background-color: white;
    padding: 1.8rem 0.9rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1080px;
    margin: 0 auto;
}

.pyrolysis-container-c {
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.15);
    border-radius: 10px;
    overflow: hidden;
    width: 90%;
    height: 90%;
}

.pyrolysis-title-c {
    background-color: #0077b6;
    color: white;
    padding: 1.08rem;
    margin: 0;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.pyrolysis-content-c {
    display: flex;
    flex-wrap: wrap;
    padding: 1.8rem;
    gap: 1.8rem;
}

.pyrolysis-text-c {
    flex: 1;
    min-width: 270px;
}

.pyrolysis-images-c {
    flex: 1;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.main-image-c {
    width: 100%;
}

.result-images-c {
    display: flex;
    gap: 1.35rem;
    width: 90%;
}

.result-image-c {
    flex: 1;
    min-width: 0;
}

.pyrolysis-img-c {
    width: 100%;
    height: auto;
    border-radius: 7.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pyrolysis-img-c:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.2);
}

.image-caption-c {
    font-style: italic;
    color: #555;
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.pyrolysis-description-c {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    text-align: center;
}

.pyrolysis-results-c {
    padding-left: 0;
    margin: 1.5rem auto;
    list-style-type: none;
    text-align: center;
    max-width: 80%;
}

.pyrolysis-results-c li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
    display: inline-block;
    width: 100%;
    text-align: left;
}

.pyrolysis-results-c li:before {
    content: "•";
    color: #0077b6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 900px) {
    .pyrolysis-content-c {
        flex-direction: column;
    }
    
    .result-images-c {
        flex-direction: column;
    }
    
    .result-image-c {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pyrolysis-section-c {
        padding: 0.9rem 0.45rem;
    }
    
    .pyrolysis-content-c {
        padding: 1.35rem;
    }
    
    .pyrolysis-title-c {
        font-size: 1.5rem;
        padding: 0.9rem;
    }
}

.results-section-c {
    background-color: #f8fafc;
    padding: 2.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 82, 136, 0.1);
}

.results-container-c {
    width: 100%;
}

.results-content-c {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.graph-container-c {
    flex: 1;
    position: relative;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.graph-container-c:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15);
}

.graph-img-c {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    display: block;
}

.graph-hover-c {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 119, 182, 0.8);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.graph-container-c:hover .graph-hover-c {
    opacity: 1;
}

.table-container-c {
    flex: 1;
    overflow-x: auto;
}

.results-table-c {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.results-table-c th {
    background-color: #0077b6;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.results-table-c td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e1e5eb;
}

.results-table-c tr:last-child td {
    border-bottom: none;
}

.results-table-c tr:hover {
    background-color: #f0f8ff;
}

.results-table-c tr:nth-child(even) {
    background-color: #f8fafc;
}

.results-table-c tr:nth-child(even):hover {
    background-color: #e6f2ff;
}

.conclusion-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  max-width: 1000px;
  margin: 3rem auto;
  background: #0077b6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 82, 136, 0.2);
}

.conclusion-header {
  background: #0077b6;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-title {
  color: white;
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

.conclusion-list {
  background: white;
  padding: 2rem;
}

.findings-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.findings-items li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.findings-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #0077b6;
  transform: rotate(45deg);
}

.highlight {
  color: #0077b6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .conclusion-grid {
    grid-template-columns: 1fr;
  }
  
  .conclusion-header {
    padding: 1.5rem;
  }
  
  .conclusion-title {
    font-size: 1.8rem;
  }
  
  .conclusion-list {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .conclusion-title {
    font-size: 1.5rem;
  }
  
  .findings-items li {
    font-size: 1rem;
    padding-left: 2rem;
  }
  
  .findings-items li::before {
    width: 10px;
    height: 10px;
    top: 0.4rem;
  }
}

.results-content-c {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 800px;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 768px) {
  .results-content-c {
    height: 80vh;
    min-height: 500px;
    padding: 0.5rem;
  }
}
