/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Value Proposition Section */
.value-proposition {
    background: #f8f9fa;
    color: #333;
    padding: 80px 0;
}

.value-proposition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.value-sections-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr; /* Make right side a bit wider */
    gap: 60px;
    width: 100%;
    justify-content: center;
    align-items: start;
}

.value-section {
    padding: 0 20px;
}

.value-section.get-section {
    justify-self: end;
    /* Optionally add a slight shift to the right */
    margin-left: 40px;
}

.value-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #333;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #555;
    opacity: 1;
    margin-bottom: 20px;
}

.value-item .check-icon {
    flex-shrink: 0;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.watch-button {
    background: #228B22;
    color: white;
    border: 2px solid #228B22;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.watch-button:hover {
    background: #1a6b1a;
    color: white;
    border-color: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.watch-button:hover .play-icon {
    transform: scale(1.1);
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-lightbox.active {
    display: flex;
}

.video-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s ease;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Platform Statistics Section */
.platform-stats {
    padding: 100px 0;
    background: #f8f9fa;
}

.platform-stats-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-header {
    margin-bottom: 60px;
}

.platform-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.3;
}

.platform-title .highlight {
    color: #228B22;
}

.platform-description {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.platform-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    justify-items: center;
    align-items: start;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    min-height: 250px;
    min-width: 250px;
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(34, 139, 200, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    justify-content: space-between;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 200, 0.15);
}

.metric-icon {
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}



.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.metric-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Special styling for the downloads metric to center the number */
.metric-item:nth-child(2) .metric-text {
    margin-top: auto;
    justify-content: flex-end;
}



.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-cta {
    display: flex;
    justify-content: center;
}

.explore-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.explore-button:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/img/bgi/mc2/mc2_1920x1280.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5em;
    margin: 0 0 0.2em 0;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 1px 0px 2px rgb(0, 0, 0);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #60c6c7;
}

.hero-description {
    font-size: 1.5em;
    margin: 0 0 1.2em 0;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    text-shadow: 3px 3px 2px rgb(0, 0, 0);
}

.cta-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 750;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    
}

.cta-button:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #f8f9fa;
    --logo-width: 220px;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.partners-stat {
    text-align: center;
    background: linear-gradient(135deg, #228B22 0%, #20B2AA 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    min-width: 200px;
}

.partners-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
}

.partners-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    opacity: 0.95;
}

.partners-text {
    text-align: left;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.partners-description {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.partners-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.partners-logos {
    overflow: hidden;
    margin-bottom: 80px;
    padding: 60px 0;
    position: relative;
}

.partners-carousel {
    display: flex;
    animation: scroll 120s linear infinite;
    gap: 50px;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 220px;
    background: white;
    border-radius: 40px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #d6d8db;
    flex-shrink: 0;
}

/* .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #228B22;
    background: white;
} */

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--logo-width) * var(--logo-count) * -1));
    }
}

.partners-cta {
    display: flex;
    justify-content: center;
}

.case-studies-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-studies-button:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.features-subtitle {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.feature-item {
    text-align: center;
    padding: 20px;
    max-width: 300px;
}

.feature-icon {
    display:none;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.feature-icon img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.feature-icon svg {
    width: 120px;
    height: 120px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    font-size: 16px;
    font-weight: 450;
    color: #333;
    line-height: 1.5;
}

/* Bottom Section */
.bottom-section {
    padding: 80px 0;
    background: #cff2ff;
}

.bottom-section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.bottom-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.bottom-icon {
    flex-shrink: 0;
}

.bottom-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bottom-text {
    flex: 1;
}

.bottom-description {
    font-size: 16px;
    font-weight: 450;
    color: #333;
    line-height: 1.6;
}

/* Promotional Banner Section */
.promo-banner {
    padding: 100px 0;
    background: #f8f9fa;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 280px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.phone-mockup img {
    width: 100%;
    height: auto;
}

.promo-center {
    text-align: left;
}

.promo-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.3;
}

.promo-title .highlight {
    color: var(--tsgreen);
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.check-icon {
    flex-shrink: 0;
}

.quiz-cta {
    text-align: center;
    background: #c8e65c;
    padding: 25px 30px;
    border-radius: 12px;
    position: relative;
}

.quiz-question {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.quiz-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.quiz-button:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
}

.quiz-badge {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.promo-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-box {
    background: linear-gradient(135deg, #2C5F73 0%, #1a4a54 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.mission-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
}

.mission-subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--tslime);
}

/* Capabilities Section */
.capabilities {
    padding: 100px 0;
    background: #f8f9fa;
}

.capabilities-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.capabilities-subtitle {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.capability-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capability-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.capability-description {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

/* Advanced Features Section */
.advanced-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.advanced-features-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.advanced-features-subtitle {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advanced-feature-item {
    text-align: center;
    padding: 25px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

.advanced-feature-item:hover {
    border-color: #228B22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.1);
}

.advanced-feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advanced-feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.advanced-feature-description {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: 50px 40px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-choose-item:hover {
    border-color: #20B2AA;
    transform: translateY(-3px);
}

.why-choose-feature-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.why-choose-description {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
}



/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #20B2AA 0%, #228B22 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #228B22;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #228B22;
}

/* Tour Types Section */
.tour-types {
    padding: 100px 0;
    background: #f8f9fa;
}

.tour-types-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.tour-types-subtitle {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--tsgreen);
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-type-item {
    padding: 50px 30px;
    text-align: center;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.tour-type-item:hover,
.tour-type-item:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.tour-type-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    background: transparent;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 320px;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    border-radius: 12px;
    min-height: 320px;
}

.flip-card-front {
    background: inherit;
}

.flip-card-back {
    background: inherit;
    transform: rotateY(180deg);
}

.flip-card-back .tour-type-title {
    margin-bottom: 20px;
}

.flip-card-back .tour-type-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    text-align: left;
    
}

.tour-type-item.scenic {
    background: linear-gradient(135deg, #228B22 0%, #20B2AA 100%);
}

.tour-type-item.culture {
    background: linear-gradient(135deg, #20B2AA 0%, #2C5F73 100%);
}

.tour-type-item.natural {
    background: linear-gradient(135deg, #2C5F73 0%, #1a4a54 100%);
}

.tour-type-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add click hint */
.tour-type-item::after {
    content: "Click to flip";
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0.7;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.tour-type-item:hover::after,
.tour-type-item:focus::after {
    opacity: 1;
}

.tour-type-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.tour-type-description {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    opacity: 0.95;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-header {
    margin-bottom: 80px;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.process-description {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    margin-bottom: 80px;
}

.steps-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 320px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #228B22 0%, #20B2AA 100%);
    color: white;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.process-cta {
    display: flex;
    justify-content: center;
}

.fact-sheet-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fact-sheet-button:hover {
    background: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* --- Our Services Accordion Section --- */
.services-accordion-section {
    background: #f8f9fa;
    padding: 100px 0;
}
.services-accordion-header {
    text-align: center;
    margin-bottom: 40px;
}
.services-accordion-header .features-title {
    margin-bottom: 10px;
}
.services-accordion-header .features-subtitle {
    margin-bottom: 0;
    font-size: 22px;
    color: #228B22;
}
.services-accordion-summary {
    font-size: 18px;
    color: #333;
    margin: 25px auto 0 auto;
    max-width: 700px;
    line-height: 1.6;
}
.services-accordion-columns {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.services-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 240px;
}
.service-tab {
    width: 200px;
    height: 60px;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1.1;
    padding: 0 8px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px solid #d6e8db;
    background: #fff;
    color: #228B22;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
}
.services-accordion-list-left .service-tab {
    color: #228B22;
    border-color: #228B22;
}
.services-accordion-list-right .service-tab {
    color: #20B2AA;
    border-color: #20B2AA;
}
.services-accordion-list-right .service-tab:nth-child(3) {
    color: #2C5F73;
    border-color: #2C5F73;
}
.services-accordion-list-left .service-tab:nth-child(3) {
    color: #2C5F73;
    border-color: #2C5F73;
}
.service-tab:hover {
    box-shadow: 0 4px 16px rgba(34,139,34,0.08);
    background: #f6faf6;
}
.service-tab.active {
    background: #228B22;
    color: #fff !important;
    border-color: #228B22 !important;
    box-shadow: 0 4px 16px rgba(34,139,34,0.08);
}
.services-accordion-list-right .service-tab.active {
    background: #20B2AA;
    border-color: #20B2AA !important;
}
.services-accordion-list-right .service-tab.active:nth-child(3) {
    background: #2C5F73;
    border-color: #2C5F73 !important;
}
.services-accordion-list-left .service-tab.active:nth-child(3) {
    background: #2C5F73;
    border-color: #2C5F73 !important;
}
.services-accordion-details {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(34,139,34,0.07);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}
.service-detail {
    display: none;
    text-align: center;
}
.service-detail[style*="display:block"] {
    display: block;
}
.service-detail .feature-icon {
    margin-bottom: 24px;
}
.service-detail .feature-icon {
    display: none;
}
.service-detail .feature-title {
    font-size: 28px;
    margin-bottom: 10px;
}
.service-detail .feature-description {
    font-size: 18px;
    color: #333;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .services-accordion-columns {
        gap: 30px;
    }
    .services-accordion-details {
        padding: 32px 10px;
    }
}
@media (max-width: 600px) {
    .services-accordion-columns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .services-accordion-list {
        min-width: 180px;
        width: 100%;
    }
    .service-tab {
        font-size: 16px;
        padding: 14px 10px;
    }
    .services-accordion-details {
        padding: 18px 2px;
        min-height: 0;
    }
    .services-accordion-summary {
        font-size: 16px;
        padding: 0 5px;
    }
}
.services-accordion-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(34,139,34,0.08);
  border: 1.5px solid #e6e8eb;
  padding: 20px 16px;
}
.services-accordion-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  min-width: 420px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 12px 0 12px 12px;
  margin-right: 0;
  position: relative;
}
.services-accordion-details {
  min-width: 0;
  flex: 1;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 12px 12px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.services-accordion-columns::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  width: 0;
  height: calc(100% - 48px);
  border-right: 1.5px solid #e6e8eb;
  pointer-events: none;
}
.services-accordion-columns {
  border-right: none;
}
@media (max-width: 900px) {
  .services-accordion-flex {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    padding: 12px 2px;
    border-radius: 12px;
  }
  .services-accordion-columns {
    grid-template-columns: 1fr;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    border-right: none;
    padding: 12px 0 12px 12px;
    margin-right: 0;
  }
  .services-accordion-columns::after {
    display: none;
  }
  .services-accordion-details {
    max-width: 100%;
    min-width: 0;
    padding: 12px 12px 12px 16px;
  }
}
/* --- End Our Services Accordion Section --- */

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #228B22;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.1);
    border-left-color: #20B2AA;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: #228B22;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #228B22;
    text-align: right;
    display: block;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-proposition {
        padding: 60px 0;
    }
    
    .value-proposition-content {
        gap: 40px;
        text-align: center;
    }
    
    .value-sections-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-section {
        padding: 0;
    }
    
    .value-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .value-item {
        font-size: 16px;
        gap: 12px;
    }
    
    .watch-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .video-container {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .close-button {
        top: 5px;
        right: 10px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .platform-stats {
        padding: 60px 0;
    }
    
    .platform-title {
        font-size: 32px;
    }
    
    .platform-description {
        font-size: 18px;
    }
    
    .platform-metrics {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .metric-number {
        font-size: 32px;
    }
    
    .metric-label {
        font-size: 16px;
    }
    
    .explore-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-icon {
        height: 100px;
    }
    
    .feature-icon img,
    .feature-icon svg {
        max-width: 100px;
        max-height: 100px;
        width: 100px;
        height: 100px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .bottom-title {
        font-size: 28px;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .promo-center {
        text-align: center;
    }
    
    .promo-title {
        font-size: 28px;
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .mission-box {
        margin: 0 auto;
    }
    
    .tour-types-title {
        font-size: 32px;
    }
    
    .tour-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-type-item {
        padding: 40px 25px;
        min-height: 280px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 40px 25px;
        min-height: 280px;
    }
    
    .tour-type-title {
        font-size: 20px;
    }
    
    .capabilities-title,
    .advanced-features-title,
    .why-choose-title,
    .cta-title {
        font-size: 32px;
    }
    
    .capabilities-grid,
    .advanced-features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    

    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
    
    .process-section {
        padding: 50px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .process-steps {
        margin-bottom: 50px;
    }
    
    .steps-title {
        font-size: 20px;
        margin-bottom: 35px;
    }
    
    .steps-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .step-item {
        gap: 15px;
        padding: 18px 20px;
    }
    
    .step-item:last-child {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    .fact-sheet-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .partners {
        padding: 60px 0;
        --logo-width: 210px;
    }
    
    .partners-header {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .partners-text {
        text-align: center;
    }
    
    .partners-title {
        font-size: 32px;
    }
    
    .partners-description {
        font-size: 18px;
    }
    
    .partners-subtitle {
        font-size: 16px;
    }
    
    .partners-stat {
        margin: 0 auto;
        max-width: 250px;
    }
    
    .partners-number {
        font-size: 42px;
    }
    
    .partners-label {
        font-size: 16px;
    }
    
    .partners-logos {
        margin-bottom: 60px;
        padding: 40px 0;
    }
    
    .partners-carousel {
        gap: 40px;
    }
    
    .partner-logo {
        height: 105px;
        width: 170px;
        padding: 20px;
    }
    
    .case-studies-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .value-proposition {
        padding: 50px 0;
    }
    
    .value-proposition-content {
        gap: 30px;
    }
    
    .value-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .value-item {
        font-size: 15px;
        gap: 10px;
    }
    
    .watch-button {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .video-container {
        max-width: 98vw;
        max-height: 70vh;
    }
    
    .close-button {
        top: 3px;
        right: 8px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    .platform-stats {
        padding: 50px 0;
    }
    
    .platform-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .platform-description {
        font-size: 16px;
    }
    
    .platform-header {
        margin-bottom: 40px;
    }
    
    .platform-metrics {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .metric-number {
        font-size: 28px;
    }
    
    .metric-label {
        font-size: 14px;
    }
    
    .explore-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .bottom-section {
        padding: 60px 0;
    }
    
    .promo-banner {
        padding: 60px 0;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .benefit-item {
        font-size: 16px;
    }
    
    .quiz-question {
        font-size: 18px;
    }
    
    .quiz-cta {
        padding: 20px 15px;
    }
    
    .mission-title,
    .mission-subtitle {
        font-size: 24px;
    }
    
    .tour-types {
        padding: 60px 0;
    }
    
    .tour-types-title {
        font-size: 28px;
    }
    
    .tour-types-grid {
        gap: 20px;
    }
    
    .tour-type-item {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .tour-type-title {
        font-size: 18px;
    }
    
    .tour-type-description {
        font-size: 14px;
    }
    
    .capabilities,
    .advanced-features,
    .why-choose-us,
    .cta-section {
        padding: 60px 0;
    }
    
    .capabilities-title,
    .advanced-features-title,
    .why-choose-title,
    .cta-title {
        font-size: 28px;
    }
    
    .capabilities-grid,
    .advanced-features-grid,
    .why-choose-grid {
        gap: 30px;
    }
    

    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
    
    .process-section {
        padding: 50px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .process-steps {
        margin-bottom: 50px;
    }
    
    .steps-title {
        font-size: 20px;
        margin-bottom: 35px;
    }
    
    .steps-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .step-item {
        gap: 15px;
        padding: 18px 20px;
    }
    
    .step-item:last-child {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    .fact-sheet-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .partners {
        padding: 50px 0;
        --logo-width: 170px;
    }
    
    .partners-header {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-description {
        font-size: 16px;
    }
    
    .partners-subtitle {
        font-size: 15px;
    }
    
    .partners-number {
        font-size: 36px;
    }
    
    .partners-label {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .partners-logos {
        margin-bottom: 50px;
        padding: 35px 0;
    }
    
    .partners-carousel {
        gap: 30px;
    }
    
    .partner-logo {
        height: 90px;
        width: 145px;
        padding: 16px;
    }
    
    .case-studies-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .testimonial-quote {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
}

/* --- TSG Infographic Section Styles --- */
.tsg-infographic-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.tsg-infographic-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.tsg-infographic-left {
    flex: 0 0 420px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.tsg-infographic-graphic {
    position: relative;
    width: 340px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.tsg-infographic-circle {
    background: #fff;
    border: 4px solid #b6e2c6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(34,139,34,0.08);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.tsg-infographic-main {
    width: 180px;
    height: 180px;
    top: 0;
    border: 5px solid #b6e2c6;
    background: #eafaf1;
    z-index: 2;
}
.tsg-infographic-logo {
    font-weight: 900;
    font-size: 1.3em;
    color: #228B22;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1.1;
}
.tsg-infographic-logo-text {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
}
.tsg-infographic-headphones {
    font-size: 1.3em;
    display: block;
    margin-top: 2px;
}
.tsg-infographic-main-label {
    font-size: 1.1em;
    font-weight: 700;
    color: #228B22;
    margin-top: 6px;
    text-align: center;
}
.tsg-infographic-circle.tsg-infographic-partners {
    width: 120px;
    height: 120px;
    top: 220px;
    left: 10%;
    background: #f6fafd;
    border-color: #20B2AA;
    z-index: 1;
}
.tsg-infographic-circle.tsg-infographic-visitors {
    width: 120px;
    height: 120px;
    top: 220px;
    left: 90%;
    background: #f6fafd;
    border-color: #2C5F73;
    z-index: 1;
}
.tsg-infographic-icon {
    font-size: 2.1em;
    margin-bottom: 8px;
}
.tsg-infographic-label {
    font-size: 1em;
    font-weight: 700;
    color: #228B22;
    text-align: center;
    line-height: 1.2;
}
.tsg-infographic-partners .tsg-infographic-label {
    color: #20B2AA;
}
.tsg-infographic-visitors .tsg-infographic-label {
    color: #2C5F73;
}
.tsg-infographic-sub {
    font-size: 0.85em;
    color: #888;
    font-weight: 400;
}
.tsg-infographic-connector {
    position: absolute;
    width: 4px;
    background: #b6e2c6;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.tsg-infographic-connector-partners {
    top: 160px;
    height: 60px;
    background: #20B2AA;
}
.tsg-infographic-connector-visitors {
    top: 160px;
    left: 75%;
    width: 4px;
    height: 60px;
    background: #2C5F73;
    transform: translateX(-50%);
}
.tsg-infographic-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    min-width: 320px;
}
.tsg-infographic-title {
    font-size: 2.1em;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.2;
}
.tsg-infographic-benefits-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
}
.tsg-infographic-benefits {
    min-width: 210px;
}
.tsg-infographic-benefits h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 12px;
}
.tsg-infographic-benefits ul {
    list-style: disc inside;
    color: #333;
    font-size: 1em;
    font-weight: 500;
    margin: 0;
    padding-left: 18px;
}
.tsg-infographic-benefits li {
    margin-bottom: 10px;
    line-height: 1.5;
    text-indent: -1.35em; /* Negative indent to pull text left */
    padding-left: 1.2em; /* Add padding to maintain bullet visibility */
}

.tsg-infographic-benefits:last-child h3 {
    color: #2C5F73;
}
@media (max-width: 900px) {
    .tsg-infographic-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .tsg-infographic-left {
        justify-content: center;
        margin-bottom: 20px;
    }
    .tsg-infographic-right {
        align-items: center;
        text-align: center;
    }
    .tsg-infographic-benefits-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .tsg-infographic-section {
        padding: 40px 0 20px 0;
    }
    .tsg-infographic-graphic {
        width: 220px;
        height: 320px;
    }
    .tsg-infographic-main {
        width: 110px;
        height: 110px;
    }
    .tsg-infographic-circle.tsg-infographic-partners,
    .tsg-infographic-circle.tsg-infographic-visitors {
        width: 70px;
        height: 70px;
        top: 140px;
    }
}
/* --- End TSG Infographic Section Styles --- */

/* --- TSG Value Section Styles --- */
.tsg-value-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.tsg-value-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.tsg-value-left {
    flex: 1 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}
.tsg-value-title {
    font-size: 2.1em;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.2;
}
.tsg-value-highlight {
    color: #228B22;
    font-weight: 700;
}
.tsg-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
    color: #222;
}
.tsg-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 1.1em;
    line-height: 1.5;
}
.tsg-value-check {
    color: #228B22;
    font-size: 1.5em;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
    line-height: 1;
}
.tsg-value-right {
    flex: 0 0 520px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.tsg-value-image {
    max-width: 520px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(34,139,34,0.10);
    object-fit: cover;
}
@media (max-width: 900px) {
    .tsg-value-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .tsg-value-left {
        align-items: center;
        text-align: center;
    }
    .tsg-value-right {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .tsg-value-section {
        padding: 40px 0 20px 0;
    }
    .tsg-value-image {
        max-width: 95vw;
    }
}
/* --- End TSG Value Section Styles --- */

/* --- TSG Process Section Styles --- */
.tsg-process-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.tsg-process-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.tsg-process-left {
    flex: 0 0 580px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.tsg-process-image {
    max-width: 580px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,95,115,0.10);
    object-fit: cover;
    border: 2px solid #000000;
}
.tsg-process-right {
    flex: 1 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}
.tsg-process-title {
    font-size: 2.1em;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.2;
}
.tsg-process-description {
    font-size: 1.1em;
    color: #2C5F73;
    margin-bottom: 10px;
    line-height: 1.5;
}
.tsg-process-steps {
    margin: 18px 0 10px 0;
    width: 100%;
}
.tsg-process-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}
.tsg-process-step {
    background: #20B2AA;
    color: white;
    font-weight: 700;
    font-size: 0.9em;
    border-radius: 25px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(32,178,170,0.15);
    letter-spacing: 0.5px;
    line-height: 1.2;
    min-width: 160px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tsg-step-1 { 
    align-self: flex-start;
    margin-left: 20px;
}
.tsg-step-2 { 
    align-self: flex-end;
    margin-right: 20px;
    background: #c8e65c; 
    color: #333; 
}
.tsg-step-3 { 
    align-self: flex-start;
    margin-left: 20px;
    background: #c8e65c; 
    color: #333; 
}
.tsg-step-4 { 
    align-self: flex-end;
    margin-right: 20px;
    background: #228B22; 
}
.tsg-process-connector {
    position: absolute;
    border: 1px dashed #20B2AA;
    opacity: 0.7;
}
.tsg-connector-1 { 
    top: 65px;
    left: 50%;
    width: 80px;
    height: 1px;
    transform: translateX(-50%) rotate(15deg);
}
.tsg-connector-2 { 
    top: 145px;
    left: 50%;
    width: 80px;
    height: 1px;
    transform: translateX(-50%) rotate(-15deg);
}
.tsg-connector-3 { 
    top: 225px;
    left: 50%;
    width: 80px;
    height: 1px;
    transform: translateX(-50%) rotate(15deg);
}
.tsg-process-impact {
    margin: 30px 0 10px 0;
    width: 100%;
}
.tsg-process-impact-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #20B2AA;
    margin-bottom: 15px;
    text-align: center;
}
.tsg-process-impact-graphic {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.tsg-process-arrow {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
}
.tsg-process-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    position: relative;
}
.tsg-process-bars::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
}
.tsg-process-bar {
    display: block;
    width: 16px;
    background: #20B2AA;
    border-radius: 1px 1px 0 0;
    position: relative;
}
.tsg-bar-1 { height: 20px; }
.tsg-bar-2 { height: 30px; }
.tsg-bar-3 { height: 45px; }
.tsg-bar-4 { height: 60px; }
.tsg-bar-5 { height: 75px; }
.tsg-process-celebration {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
}
.tsg-process-faq-btn {
    display: block;
    margin-top: 30px;
    background: #20B2AA;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(32,178,170,0.08);
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.tsg-process-faq-btn:hover {
    background: #228B22;
    color: #fff;
}
@media (max-width: 900px) {
    .tsg-process-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .tsg-process-left {
        justify-content: center;
        margin-bottom: 20px;
    }
    .tsg-process-right {
        align-items: center;
        text-align: center;
    }
    .tsg-process-grid {
        max-width: 350px;
        gap: 15px;
    }
    .tsg-process-step {
        font-size: 0.8em;
        min-width: 140px;
        min-height: 40px;
        padding: 10px 15px;
    }
    .tsg-step-1, .tsg-step-3 {
        margin-left: 15px;
    }
    .tsg-step-2, .tsg-step-4 {
        margin-right: 15px;
    }
    .tsg-connector-1 { 
        top: 55px;
        width: 60px;
    }
    .tsg-connector-2 { 
        top: 115px;
        width: 60px;
    }
    .tsg-connector-3 { 
        top: 175px;
        width: 60px;
    }
}
@media (max-width: 600px) {
    .tsg-process-section {
        padding: 40px 0 20px 0;
    }
    .tsg-process-image {
        max-width: 95vw;
    }
    .tsg-process-grid {
        max-width: 300px;
        gap: 12px;
    }
    .tsg-process-step {
        font-size: 0.75em;
        min-width: 120px;
        min-height: 35px;
        padding: 8px 12px;
    }
    .tsg-step-1, .tsg-step-3 {
        margin-left: 10px;
    }
    .tsg-step-2, .tsg-step-4 {
        margin-right: 10px;
    }
    .tsg-connector-1 { 
        top: 47px;
        width: 50px;
    }
    .tsg-connector-2 { 
        top: 95px;
        width: 50px;
    }
    .tsg-connector-3 { 
        top: 143px;
        width: 50px;
    }
}
/* --- End TSG Process Section Styles --- */

.platform-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bubble-container {
    position: relative;
    width: 400px;
    height: 400px;
    transform: scale(1.2) translateY(-20px);
}

.bubble {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    z-index: 1;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.bubble.top-bubble {
    width: 120px;
    height: 120px;
    bottom: 200px;
    left: calc(50% - 60px);
    transform: scale(0);
    animation-delay: 0s;
}

.bubble.bottom-left-bubble {
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: 50px;
    animation-delay: 0.3s;
}

.bubble.bottom-right-bubble {
    width: 100px;
    height: 100px;
    bottom: 50px;
    right: 50px;
    animation-delay: 0.6s;
}

.bubble-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bubble-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.bubble-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tsnavy);
    text-align: center;
    line-height: 1.2;
}

.connection-line {
    position: absolute;
    background: var(--tsgreen);
    height: 2px;
    opacity: 0;
}

.connection-line.line1 {
    bottom: 175px;
    left: 100px;
    width: 100px;
    transform: rotate(-45deg);
    animation-delay: 0.8s;
}

.connection-line.line2 {
    bottom: 175px;
    right: 100px;
    width: 100px;
    transform: rotate(45deg);
    animation-delay: 1.1s;
}

@keyframes bubblePop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineDraw {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 100px;
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
