/****** BEGIN App.css ******/

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4; /* Light grey background for contrast */
  color: #333; /* Default text color, will be overridden where specified */
  padding: 20px;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff; /* White background for content area */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
  background: #333; /* Dark header background */
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 20px;
}

header img.logo {
  max-width: 250px;
  height: auto;
}

section {
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section:last-child {
  border-bottom: none;
}

h1, h2, h3 {
  margin-bottom: 1rem;
  color: #333; /* Default heading color */
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #f7931e; /* Main heading color as requested */
}

h2 {
  font-size: 2rem;
  color: #444;
}

h3 {
  font-size: 1.5rem;
  color: #555;
}

p, li {
  margin-bottom: 1rem;
  color: #f7931e; /* Requested text color */
  font-size: 1.1rem;
}

strong {
  font-weight: bold;
  color: #f7931e; /* Ensure strong text also uses the requested color */
}

.centered-text {
    text-align: center;
}

img.content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.ai-tools-section {
  background-color: #e9e9e9; /* Slightly different background for this section */
  padding: 30px 20px;
  border-radius: 8px;
}

.ai-tool {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}

.ai-tool:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ai-tool img.tool-logo {
  max-width: 200px; /* Adjust as needed */
  height: auto;
  display: block;
  margin: 0 auto 15px auto; /* Center the logo */
}

.ai-tool h3 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.ai-tool p {
  text-align: center;
  font-size: 1rem;
  color: #f7931e; /* Requested text color */
}

.cta-section {
  background-color: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
}

.cta-section h2 {
  color: #f7931e;
}

.cta-section p {
  color: #fff; /* White text on dark background for CTA */
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background-color: #f7931e;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6830d;
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
  margin-top: 20px;
}

footer p {
    color: #ccc; /* Lighter text color for footer */
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p, li {
    font-size: 1rem;
  }
  header img.logo {
    max-width: 200px;
  }
  .container {
    padding: 0 10px;
  }
  section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .ai-tool img.tool-logo {
    max-width: 150px;
  }
}

/****** END App.css ******/
