/* styles.css */

/* Global Styles */
body {
  font-family: 'Roboto', Franklin Gothic Medium;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

h1, h2 {
  font-family: 'Roboto', Franklin Gothic Medium;
  color: #333;
}

a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  /* background: #4a90e2 url('hero-background.jpg') no-repeat center/cover; */
  background: linear-gradient(90deg, #4a90e2, #76c9c2);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.hero .logo-container img {
  max-width: 350px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #4a90e2;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
}

.cta-button:hover {
  background: #f4f4f4;
}

/* Section Styles */
.section {
  padding: 2rem 1rem;
  text-align: left;
}

.section.bg-light {
  background: #f4f4f4;
}

.section.bg-primary {
  background: linear-gradient(90deg, #4a90e2, #76c9c2);
  color: #fff;
}

.text-light a {
  color: #fff;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

ul li:before {
  /* content: '✔';
	 content: '⚫';
	 content: '🎯';
	 content: '➕';
  */
  
  content: '✙';
  color: #4a90e2;
  position: absolute;
  left: 0;
  top: 0;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #4a90e2, #76c9c2);
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }
}
