/* General Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo {
  width: 720px;
  height: auto;
  margin-bottom: 20px;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f3f4f6;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 3rem;
}

/* Hero Section */
.hero {
  background-color: #4a90e2;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  opacity: 0.9;
}

/* Tool Description Section */
.tool-description {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.tool-description p {
  font-size: 1em;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button-group {
  display: flex;
  justify-content: space-between;
}

button {
  width: 48%;
  background-color: #4a90e2;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #357ab8;
}

/* Result Display */
#result {
  margin-top: 15px;
  color: #4a90e2;
}

#json-output {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  color: #333;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 20px;
  background-color: #333;
  color: #fff;
  margin-top: 40px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

footer p {
  font-size: 0.9em;
}

/* Long Description Section Styling */
#long-description {
  padding: 2rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#long-description .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

#long-description .section-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

#long-description .section-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #444;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#long-description .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#long-description .feature-list-item {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#long-description .feature-list-item:hover {
  background: #f5f5f5;
  border-color: #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#long-description .feature-list-item strong {
  color: #222;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .tool-description p {
    font-size: 0.95em;
  }

  button {
    font-size: 0.9em;
  }

  footer p {
    font-size: 0.8em;
  }
  
    #long-description {
    padding: 3rem;
  }

  #long-description .section-title {
    font-size: 1.5rem;
  }

  #long-description .section-paragraph {
    font-size: 1.1rem;
  }

  #long-description .feature-list-item {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  
    .logo {
  width: 320px;
  height: auto;
  margin-bottom: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
}
}