:root {
        --primary-color: #c2528b;
        --secondary-color: #8b5a8e;
        --accent-color: #f4a261;
        --success-color: #28a745;
    }

    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-header h2 {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-header p {
        color: #555;
        font-size: 1.1rem;
        max-width: 900px;
        margin: 0 auto 10px;
    }

    .powered-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--secondary-color), #5a4a8e);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        margin-top: 10px;
        font-weight: 600;
    }

    .expert-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        margin-top: 10px;
        font-weight: 600;
    }

    .free-badge-header {
        display: inline-block;
        background: var(--success-color);
        color: white;
        padding: 8px 25px;
        border-radius: 25px;
        font-size: 1rem;
        margin: 10px 10px;
        font-weight: 700;
    }

    .calculator-card,
    .report-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
        background: white;
        margin-bottom: 30px;
    }

    .calculator-card:hover,
    .report-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(194, 82, 139, 0.3);
    }

    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .calculator-card .card-img-wrapper {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .report-card .card-img-wrapper {
        height: 220px;
    }

    .report-card .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
    }

    .card-icon {
        font-size: 4rem;
        color: white;
        opacity: 0.9;
    }

    .free-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--success-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .popular-badge {
        position: absolute;
        background: var(--accent-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        max-width: calc(100% - 100px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .calculator-card .popular-badge {
        top: 15px;
        left: 15px;
    }

    .report-card .popular-badge {
        top: 15px;
        right: 15px;
        padding: 5px 15px;
        font-size: 0.8rem;
    }

    .card-body {
        padding: 25px;
    }

    .card-title {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .calculator-card .card-title {
        font-size: 1.3rem;
        min-height: 60px;
    }

    .report-card .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .calculator-card .card-description {
        min-height: 70px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .features-list li {
        color: #555;
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-left: 25px;
        position: relative;
    }

    .features-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--success-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .report-card .features-list li {
        margin-bottom: 10px;
    }

    .calculator-footer {
        padding: 15px 0;
        border-top: 2px solid #f0f0f0;
        margin-top: 15px;
        text-align: center;
    }

    .btn-calculate,
    .btn-view-report {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 12px 35px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-calculate {
        width: 100%;
    }

    .btn-view-report {
        padding: 12px 30px;
    }

    .btn-calculate:hover,
    .btn-view-report:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(194, 82, 139, 0.4);
        color: white;
    }

    .accuracy-badge,
    .delivery-info {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
        font-size: 0.85rem;
        color: #666;
        text-align: center;
    }

    .accuracy-badge {
        padding: 12px;
    }

    .delivery-info {
        padding: 15px;
    }

    .accuracy-badge i {
        color: var(--success-color);
        margin-right: 5px;
    }

    .delivery-info i {
        color: var(--primary-color);
        margin-right: 5px;
    }

    .stats-section {
        background: white;
        border-radius: 15px;
        padding: 30px;
        margin: 50px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .stat-item {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
    }

    .stat-label {
        color: #666;
        font-size: 1rem;
        margin-top: 5px;
    }

    .price-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-top: 2px solid #f0f0f0;
        margin-top: 15px;
    }

    .price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .price-label {
        font-size: 0.8rem;
        color: #888;
        display: block;
    }

    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 1.5rem !important;
        }
        
        .calculator-card .card-img-wrapper {
            height: 160px;
        }

        .report-card .card-img-wrapper {
            height: 180px;
        }

        .card-icon {
            font-size: 3rem;
        }

        .calculator-card .card-title,
        .calculator-card .card-description {
            min-height: auto;
        }
    }
	/* Make card top sections white */
.calculator-card .card-img-wrapper {
    background: white;
}

/* Change icon color to match theme */
.card-icon {
    color: var(--primary-color);
}

/* Add subtle border if needed */
.calculator-card .card-img-wrapper {
    border-bottom: 2px solid #f8f9fa;
}

/* Testtimonials */

  .testimonial-carousel {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
  }

  .testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }

  .testimonial-slide.active {
    display: block;
    position: relative;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2px !important;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: #0d6efd;
    width: 30px;
    border-radius: 5px;
  }

  .stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
  }

  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .read-more-btn {
    background: none;
    border: none;
    color: #0d6efd;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-top: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .read-more-btn:hover {
    color: #0a58ca;
    text-decoration: underline;
  }

  .testimonial-slide.compact {
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 0 10px;
  }

  .testimonial-header-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .testimonial-avatar-compact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
  }

  .reviewer-info-compact h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
  }

  .reviewer-info-compact p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
  }

  .rating-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .star-rating-compact {
    color: #ffc107;
    font-size: 16px;
  }

  .service-type {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
  }

  .testimonial-text-compact {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 15px;
  }
  
  /* Transit Predictions */
  
    .timeline {
          position: relative;
          padding-left: 40px;
      }

      /* Vertical line */
      .timeline::before {
          content: '';
          position: absolute;
          top: 8px;
          bottom: 0;
          left: 8px;
          width: 3px;
          background: #007bff;
      }

      .timeline-item {
          position: relative;
          margin-bottom: 35px;
      }

      .timeline-item:last-child {
          margin-bottom: 0;
      }

      /* Circle marker */
      .timeline-item::before {
          content: '';
          position: absolute;
          width: 14px;
          height: 14px;
          border-radius: 50%;
          background: white;
          border: 3px solid #007bff;
          left: -37px;
          top: 5px;
          z-index: 1;
      }

      .timeline-date {
          font-size: 1.1em;
          font-weight: 600;
          color: #007bff;
          margin-bottom: 8px;
          display: block;
      }

      .timeline-event {
          background: #f0f4ff;
          padding: 12px 16px;
          border-radius: 8px;
          display: flex;
          align-items: center;
          gap: 8px;
          margin-bottom: 6px;
      }

      .timeline-event:last-child {
          margin-bottom: 0;
      }

      .event-icon {
          font-size: 1.2em;
          flex-shrink: 0;
      }

      .event-text {
          color: #333;
          font-size: 0.95em;
          line-height: 1.5;
      }

      .no-events {
          text-align: center;
          color: #666;
          padding: 40px 20px;
          font-size: 1.1em;
      }

.nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    flex-wrap: nowrap;
}

.nav-tabs .nav-item {
    flex: 0 0 auto;
}

.nav-tabs .nav-link {
    color: #6b7280;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
    font-size: 18px; 
}

.nav-tabs .nav-link:hover {
    color: #667eea;
    border-bottom-color: #e5e7eb;
}

.nav-tabs .nav-link.active {
    color: #667eea;
    background: transparent;
    border-bottom-color: #667eea;
}

.nav-tabs .nav-link i {
    margin-right: 6px;
}

/* Mobile optimization - make tabs share space equally on small screens */
@media (max-width: 576px) {
    .nav-tabs .nav-item {
        flex: 0 0 auto;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .nav-tabs .nav-link i {
        margin-right: 4px;
        font-size: 14px;
    }
}

/* Sections */
 /* Only NEW styles for Services Section - Add these to your existing CSS */
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-header h2 {
            position: relative;
            display: inline-block;
        }

        /* Services Grid */
        .services-container {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            padding: 25px;
            background: #fff;
            border-radius: 15px;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            border: 2px solid #e8e8e8;
        }

        .service-item:hover {
            background: linear-gradient(135deg, rgba(194, 82, 139, 0.03), rgba(139, 90, 142, 0.03));
            border: 2px solid var(--primary-color);
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(194, 82, 139, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            min-width: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .service-item:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(194, 82, 139, 0.3);
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content {
            flex: 1;
        }

        .service-content h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-content h3 {
            color: var(--secondary-color);
        }

        .service-content p {
            color: #666;
            font-size: 0.98rem;
            line-height: 1.7;
            margin: 0;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 10px;
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-link {
            opacity: 1;
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .services-container {
                padding: 30px 20px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .service-item {
                padding: 20px 15px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                min-width: 70px;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .service-content {
                width: 100%;
            }

            .service-content h3 {
                font-size: 1.15rem;
                text-align: center;
            }

            .service-content p {
                font-size: 0.92rem;
                text-align: center;
            }

            .service-link {
                text-align: center;
                justify-content: flex-start;
            }

            .service-item:hover {
                transform: translateX(5px);
            }
        }
 /* Only NEW styles for Gemstones Section */
        
        .gemstone-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid #e8e8e8;
            height: 100%;
            margin-bottom: 30px;
        }

        .gemstone-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(194, 82, 139, 0.25);
            border-color: var(--primary-color);
        }

        .gemstone-image-wrapper {
            width: 140px;
            height: 140px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gemstone-card:hover .gemstone-image-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(194, 82, 139, 0.3);
        }

        .gemstone-image-wrapper img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .gemstone-card:hover .gemstone-image-wrapper img {
            transform: scale(1.1);
        }

        .gemstone-name {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .gemstone-card:hover .gemstone-name {
            color: var(--secondary-color);
        }

        .gemstone-description {
            color: #666;
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 60px;
        }

        .gemstone-benefits {
            background: linear-gradient(135deg, rgba(194, 82, 139, 0.05), rgba(139, 90, 142, 0.05));
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .gemstone-benefits h4 {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gemstone-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .gemstone-benefits li {
            color: #555;
            font-size: 0.85rem;
            padding-left: 20px;
            position: relative;
            margin-bottom: 6px;
        }

        .gemstone-benefits li:before {
            content: "✦";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
        }

        .gemstone-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .gemstone-price small {
            font-size: 0.8rem;
            color: #888;
            font-weight: 400;
        }

        .btn-gemstone {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .btn-gemstone:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(194, 82, 139, 0.4);
            color: white;
        }

        .certified-badge {
            display: inline-block;
            background: var(--success-color);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .gemstone-specialty {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 2px solid #e8e8e8;
        }

        .specialty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .specialty-item {
            text-align: center;
            padding: 25px;
            background: linear-gradient(135deg, rgba(194, 82, 139, 0.03), rgba(139, 90, 142, 0.03));
            border-radius: 12px;
            border: 1px solid rgba(194, 82, 139, 0.1);
            transition: all 0.3s ease;
        }

        .specialty-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(194, 82, 139, 0.15);
        }

        .specialty-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .specialty-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .specialty-text {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .gemstone-image-wrapper {
                width: 120px;
                height: 120px;
            }

            .gemstone-image-wrapper img {
                width: 75px;
                height: 75px;
            }

            .gemstone-name {
                font-size: 1.15rem;
            }

            .gemstone-description {
                min-height: auto;
            }

            .specialty-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gemstone-specialty {
                padding: 25px 20px;
            }
        }
/* About Section */
 /* Only NEW styles for Mission & Founder Section */
        

        .about-section-alt {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .mission-content-wrapper,
        .founder-content-wrapper {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            border: 2px solid #e8e8e8;
        }

        .mission-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(194, 82, 139, 0.2);
            height: 100%;
            min-height: 400px;
        }

        .mission-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mission-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(194, 82, 139, 0.9), transparent);
            padding: 30px;
            color: white;
        }

        .mission-image-overlay h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }

        .mission-text h2,
        .founder-text h2 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .mission-text p,
        .founder-text p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .mission-highlights,
        .founder-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-item {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, rgba(194, 82, 139, 0.05), rgba(139, 90, 142, 0.05));
            border-radius: 12px;
            border: 2px solid rgba(194, 82, 139, 0.1);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(194, 82, 139, 0.15);
            border-color: var(--primary-color);
        }

        .highlight-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .highlight-text {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .highlight-subtext {
            color: #666;
            font-size: 0.9rem;
        }

        .founder-image-wrapper {
            position: relative;
            text-align: center;
            margin-bottom: 30px;
        }

        .founder-photo {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 10px 40px rgba(194, 82, 139, 0.3);
            margin: 0 auto;
            display: block;
            position: relative;
            z-index: 2;
        }

        .founder-photo-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 260px;
            height: 260px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            z-index: 1;
            opacity: 0.2;
        }

        .founder-credentials {
            text-align: center;
            margin-bottom: 30px;
        }

        .founder-name {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .founder-title {
            color: var(--secondary-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .founder-experience {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .mission-cta,
        .founder-cta {
            margin-top: 30px;
            text-align: left;
        }

        .btn-mission {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 15px;
        }

        .btn-mission:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(194, 82, 139, 0.4);
            color: white;
        }

        .btn-mission-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
        }

        .btn-mission-outline:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(194, 82, 139, 0.4);
        }

        .expertise-list {
            background: linear-gradient(135deg, rgba(194, 82, 139, 0.05), rgba(139, 90, 142, 0.05));
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            border: 2px solid rgba(194, 82, 139, 0.1);
        }

        .expertise-list h4 {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .expertise-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .expertise-list li {
            color: #555;
            font-size: 0.95rem;
            padding-left: 25px;
            position: relative;
        }

        .expertise-list li:before {
            content: "⭐";
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        @media (max-width: 768px) {
            .mission-content-wrapper,
            .founder-content-wrapper {
                padding: 30px 20px;
            }

            .mission-text h2,
            .founder-text h2 {
                font-size: 1.8rem;
            }

            .mission-image-wrapper {
                min-height: 300px;
                margin-bottom: 30px;
            }

            .founder-photo {
                width: 180px;
                height: 180px;
            }

            .founder-photo-bg {
                width: 220px;
                height: 220px;
            }

            .mission-highlights,
            .founder-highlights {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .expertise-list ul {
                grid-template-columns: 1fr;
            }

            .mission-cta,
            .founder-cta {
                text-align: center;
            }
        }
