/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #fff6ea, #ffd1a1);
  color: #2b2b2b;
  text-align: center;
}

/* Header and logo */
header {
  padding: 40px 20px 0px;
}

.logo {
  width: 240px; /* 50% larger than before */
  margin-bottom: 5px;
}

h1 {
  font-size: 3em;
  font-weight: 900;
  background: linear-gradient(to right, #ff007f, #ffae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.tagline {
  font-size: 1.3em;
  color: #7a5a40;
  margin-top: 10px;
}

/* Section styling */
section {
  margin: 50px 20px;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #d97a00;
}

/* Button containers */
.buttons,
.donation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Download and donate buttons */
.download-btn,
.donate-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #ff007f, #ffae00);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.download-btn:hover,
.donate-btn:hover {
  transform: scale(1.05);
}

.download-btn img,
.donate-btn img {
  width: 28px;
  height: 28px;
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 30px 20px;
  background: #2b2b2b;
  color: #f2f2f2;
  font-size: 0.95em;
}

footer a {
  color: #ffae00;
  text-decoration: none;
}

.features {
  margin: 60px 20px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  max-width: 220px;
  text-align: center;
}

.feature img {
  width: 64px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2em;
  color: #ff007f;
}

.feature p {
  font-size: 0.95em;
  color: #333;
}

/* Laptop preview */
.preview {
  margin: 10px auto;
}

.laptop {
  max-width: 100%;
  width: 240px;
  border-radius: 5px;

}

/* Feature grid with emojis */
.features {
  margin: 15px 20px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  max-width: 220px;
  text-align: center;
}

.emoji {
  font-size: 48px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2em;
  color: #ff007f;
}

.feature p {
  font-size: 0.95em;
  color: #333;
}
