/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  color: #2c3e50;
}

p {
  color: #666;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
}

header .logo img {
  height: 50px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
}

header .btn-login {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #e9ecef;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.2rem;
}

.hero-content .btn-cta {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Content Section */
.content {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: white;
}

.content-item {
  text-align: center;
  max-width: 30%;
}

.content-item h2 {
  font-size: 1.5rem;
}

.content-item p {
  font-size: 1rem;
}

.content-item img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #333;
  color: white;
  text-align: center;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}