/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #007aff, #00c6ff);
  color: #fff;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2rem;
}

/* App List Section */
.app-list {
  padding: 50px 0;
}

.app-list h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.apps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-right: 20px;
}

.app-info {
  flex: 1;
}

.app-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.app-info p {
  font-size: 1rem;
  color: #666;
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.app-buttons .btn {
  padding: 10px 20px;
  background-color: #007aff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.app-buttons .btn:hover {
  background-color: #005bb5;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #333;
  color: #fff;
}