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

/* Typography */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Container/Wrapper */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  background-image: linear-gradient(to right, #0d47a1, #1976d2);
  color: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn, .btn-small, .btn-outline {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  background-color: #1976d2;
  color: #ffffff;
}

.btn:hover {
  background-color: #115293;
}

.btn-small {
  background-color: #1976d2;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Features Overview */
.features-overview {
  padding: 3rem 0;
  text-align: center;
}

.features-overview h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.features-overview p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Solutions Snapshot */
.solutions-snapshot {
  padding: 3rem 0;
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.solution-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* Process Steps */
.process {
  padding: 3rem 0;
  background-color: #ffffff;
  border-radius: 8px;
}

.process h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  padding: 3rem 0;
  text-align: center;
}

.testimonials blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonials cite {
  font-size: 0.9rem;
  color: #555;
}

/* Call to Action Footer */
.cta-footer {
  text-align: center;
  padding: 2rem 0;
}

.cta-footer p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #ffffff;
  border-top: 1px solid #eaeaea;
  padding: 2rem 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  font-size: 0.9rem;
}

.footer-links ul li {
  margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  width: 200px;
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}