.age-calculator {
      background: #f8f9fa;
      padding: 2rem;
      border-radius: 10px;
      margin: 1rem 0;
    }

    .age-input {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: 2px solid #0060ae;
      border-radius: 8px;
      font-size: 16px;
    }

    .age-results {
      margin-top: 2rem;
    }

    .time-units {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 1.5rem 0;
    }

    .unit {
      text-align: center;
      padding: 1rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      min-width: 100px;
    }

    .advanced-results {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .result-box {
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .features-list {
      margin: 2rem 0;
      padding-left: 1.5rem;
    }

    .features-list li {
      margin: 1rem 0;
      padding: 0.5rem;
      background: #f8f9fa;
      border-radius: 5px;
    }
    .time-units {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.unit {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-width: 120px;
  transition: transform 0.3s ease;
}

.unit:hover {
  transform: translateY(-5px);
}

.unit:nth-child(1) {
  background: #e3f2fd;
  color: #1976d2;
  border: 2px solid #90caf9;
}

.unit:nth-child(2) {
  background: #f0f4c3;
  color: #afb42b;
  border: 2px solid #dce775;
  margin: 0 1.5rem;
}

.unit:nth-child(3) {
  background: #ffcdd2;
  color: #d32f2f;
  border: 2px solid #ef9a9a;
}

/* एडवांस्ड रिजल्ट स्टाइल */
.advanced-results {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #e0e0e0;
}

.result-box {
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-box:nth-child(1) {
  background: #f8bbd0;
  color: #c2185b;
  box-shadow: 0 4px 6px rgba(244, 143, 177, 0.1);
}

.result-box:nth-child(2) {
  background: #c8e6c9;
  color: #388e3c;
  box-shadow: 0 4px 6px rgba(165, 214, 167, 0.1);
  margin: 0 1rem;
}

.result-box:nth-child(3) {
  background: #fff9c4;
  color: #f57f17;
  box-shadow: 0 4px 6px rgba(255, 245, 157, 0.1);
}

.result-box:nth-child(4) {
  background: #d1c4e9;
  color: #512da8;
  box-shadow: 0 4px 6px rgba(209, 196, 233, 0.1);
  margin-left: 1rem;
}

.result-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.result-box p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}