* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
    
    body {
      background-color: #f5f7f9;
      color: #333;
      line-height: 1.6;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .header {
      background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
      color: white;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .header h1 {
      font-size: 24px;
      margin: 0;
    }
    
    .header p {
      margin: 5px 0 0;
      font-size: 14px;
    }

    .logo {
      height: 50%;
      weight: auto
      margin-bottom: 10px;
    }
    
    .info-box {
      background-color: #e3f2fd;
      border-left: 4px solid #2196f3;
      padding: 15px;
      margin-bottom: 20px;
      border-radius: 4px;
    }
    
    .info-box h3 {
      color: #1565c0;
      margin-bottom: 10px;
    }
    
    .section-title {
      color: #1a237e;
      border-bottom: 2px solid #3949ab;
      padding-bottom: 10px;
      margin: 25px 0 15px;
    }
    
    .slider-container {
      background-color: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      margin-bottom: 15px;
    }
    
    .slider-container label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    .slider-container input[type="range"] {
      width: 100%;
      margin-bottom: 10px;
    }
    
    .value-display {
      font-weight: bold;
      color: #3949ab;
    }
    
    .results {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    
    .result-item {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }
    .result-item ul{
        margin-left: 2rem
    }
    
    .result-title {
      font-weight: 600;
      display: block;
      color: #1a237e;
      margin-top: 1rem;
    }
    
    .result-value {
      font-weight: bold;
      color: #2e7d32;
      font-size: 1.1em;
    }
    
    .risk-meter {
      height: 20px;
      background-color: #f5f5f5;
      border-radius: 10px;
      margin: 10px 0;
      overflow: hidden;
    }
    
    .risk-level {
      height: 100%;
      transition: width 0.3s ease;
    }
    
    .risk-low {
      background-color: #4caf50;
    }
    
    .risk-medium {
      background-color: #ff9800;
    }
    
    .risk-high {
      background-color: #f44336;
    }
    
    .risk-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.8em;
      color: #666;
    }
    
    .recommendation {
      background-color: #e8f5e9;
      padding: 15px;
      border-radius: 8px;
      border-left: 4px solid #4caf50;
    }
    
    .recommendation h3 {
      color: #2e7d32;
      margin-top: 0;
    }
    
    .chart-container {
      position: relative;
      height: 400px;
      margin: 20px 0;
      background: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .scenario-container {
      display: flex;
      gap: 15px;
      margin: 20px 0;
    }
    
    .scenario {
      flex: 1;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .scenario-optimistic {
      background-color: #e8f5e9;
      border-left: 4px solid #4caf50;
    }
    
    .scenario-realistic {
      background-color: #e3f2fd;
      border-left: 4px solid #2196f3;
    }
    
    .scenario-pessimistic {
      background-color: #ffebee;
      border-left: 4px solid #f44336;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    th, td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    
    th {
      background-color: #f5f5f5;
      font-weight: 600;
    }
    
    tr:hover {
      background-color: #f9f9f9;
    }
    
    .conclusion {
      background-color: #fff3e0;
      padding: 20px;
      border-radius: 8px;
      border-left: 4px solid #ff9800;
      margin-top: 20px;
    }
    
    .roi-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin: 20px 0;
    }
    
    .roi-detail-item {
      background: #f5f5f5;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
    }
    
    .roi-detail-value {
      font-size: 1.3rem;
      font-weight: bold;
      color: #0066cc;
    }