body {
    font-family: Arial, sans-serif;
    background: #f4f7f9;
    margin: 0;
    padding: 0;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
  }
  
  .calculator, .results {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .calculator {
    flex: 1;
    min-width: 280px;
  }
  
  .results {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  h1, h2 {
    margin-top: 0;
    color: #333;
  }
  
  .loan-types {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .loan-types button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .loan-types button.active {
    background: #007bff;
    color: white;
  }
  
  label {
    display: block;
    margin-top: 10px;
  }
  
  input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .summary p {
    font-size: 16px;
    margin: 5px 0;
  }
  
  #toggleSchedule {
    margin-top: 15px;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  .seo-content {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  
  /* Footer */
footer {
    background: #f1f1f1;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    color: #666;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Styled note box */
.note-box {
  margin: 1.5rem auto 0 auto;
  padding: 1rem 1.5rem;
  max-width: 700px;
  border: 2px solid #007bff;
  border-radius: 8px;
  background: #e9f5ff;
  font-size: 1rem;
  font-weight: 500;
  color: #0056b3;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.note-box p {
  margin: 0;
}
  