body {
    font-family: 'Poppins', sans-serif;
    background: #f2f6fa;
    color: #333;
    margin: 0;
    padding: 0;
    transition: background 0.3s, color 0.3s;
  }
  
  .title {
    font-family: 'Bungee Spice', cursive;
    font-size: 3.8rem;
    margin: 0.5rem 0;
  }
  
  .tagline {
    font-family: 'Montez', cursive;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #ff9f04;
  }
  
  .container {
    max-width: 850px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .header-icon {
    width: 60px;
    margin-bottom: 1rem;
  }
  
  section {
    margin: 2rem 0;
    text-align: left;
  }
  
  section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2b6cb0;
  }
  
  input[type="file"],
  textarea,
  select {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .animated-btn {
    background-color: #3182ce;
    color: white;
    border: none;
    padding: 0.75rem 1.6rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(49, 130, 206, 0.3);
  }
  
  .animated-btn:hover {
    background-color: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(49, 130, 206, 0.5);
  }
  
  .result-box {
    background-color: #f0f4f8;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: left;
  }
  
  .result-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #2c5282;
  }
  
  .result-box p {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #d3dce6;
    white-space: pre-wrap;
  }
  
  /* Dark Mode */
  body.dark-mode {
    background: #1a202c;
    color: #e2e8f0;
  }
  
  body.dark-mode .container {
    background: #2d3748;
  }
  
  body.dark-mode section h2,
  body.dark-mode .result-box h3 {
    color: #63b3ed;
  }
  
  body.dark-mode input,
  body.dark-mode textarea,
  body.dark-mode select {
    background: #4a5568;
    color: white;
    border-color: #718096;
  }
  
  body.dark-mode .result-box {
    background-color: #4a5568;
  }
  
  body.dark-mode .result-box p {
    background: #2d3748;
    border-color: #5a677d;
  }
  
  body.dark-mode .animated-btn {
    background-color: #63b3ed;
    box-shadow: 0 4px 14px rgba(99, 179, 237, 0.3);
  }
  
  body.dark-mode .animated-btn:hover {
    background-color: #4299e1;
    box-shadow: 0 6px 18px rgba(99, 179, 237, 0.5);
  }
  
  /* Toggle Switch Styling */
  .toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .toggle-switch input {
    width: 40px;
    height: 20px;
    position: relative;
    appearance: none;
    background: #ccc;
    outline: none;
    border-radius: 20px;
    transition: background 0.3s;
    cursor: pointer;
  }
  
  .toggle-switch input:checked {
    background: #2b6cb0;
  }
  
  .toggle-switch input::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  
  .toggle-switch input:checked::before {
    transform: translateX(20px);
  }
  /* Tourist Spot Section */
#locationInput {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: inherit;
  }
  
  .result-box ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    color: #2d3748;
  }
  
  .result-box ul li {
    margin-bottom: 0.4rem;
    font-size: 1rem;
  }
  
  body.dark-mode .result-box ul {
    color: #e2e8f0;
  }
  
