/* Base Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #111111;
  color: #ffffff;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 1rem 1rem;
  background-color: #000000;
}

header h1 {
  color: #e1a500;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  color: #ffffff;
  font-size: 1.2rem;
}

.app-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  padding: 3rem 1rem;
  border-bottom: 1px solid #333333;
}

.app-text {
  flex: 1 1 100px;
  max-width: 600px;
  padding: 1rem;
}

.app-text h2 {
  color: #e1a500;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.app-text p, .app-text ul {
  color: #ffffff;
  font-size: 1rem;
}

.app-text ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.app-text ul li {
  margin-bottom: 0.5rem;
}

.app-image {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
  padding: 1rem;
}

.app-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #000000;
  font-size: 1rem;
  color: #ffffff;
}

footer a {
  color: #e1a500;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a[aria-label="Facebook"] {
  color: #1877F2; /* Facebook blue */
}

.social-links a[aria-label="Facebook"]:hover {
  color: #ffffff;
}

.social-links a[aria-label="Twitter"] {
  color: #1DA1F2; /* Twitter blue */
}

.social-links a[aria-label="Twitter"]:hover {
  color: #ffffff;
}

a {
  color: #66ccff; /* bright light blue, good for dark background */
  text-decoration: underline;
}

a:hover {
  color: #3399ff; /* slightly deeper blue on hover */
}

.inline-image {
	vertical-align: middle;
	height: 40px;
	width: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .app-section {
    flex-direction: column;
  }
  .app-image {
    order: 1;
  }
}
