body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #f9f3f9, #eef2fb);
  color: #222;
}

/* Header */
header {
  background-color: #111;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

header h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.cta-button {
  background-color: #f50076;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Layout */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

/* Canvas section */
.output-section {
  flex: 1;
  max-width: 1080px;
}

#canvas {
  width: 100%;
  max-width: 1080px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Input section */
.input-section {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-section h2 {
  margin-top: 0;
  font-size: 22px;
}

.input-section input[type="file"],
.input-section input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.input-section button {
  background-color: #0066e6;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .output-section,
  .input-section {
    max-width: 100%;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }

  header h1 {
    font-size: 18px;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 12px;
  }
  .contact-info {
  margin-top: 20px;
  text-align: left;
  max-width: 500px;
  margin-inline: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.contact-item .icon {
  font-size: 20px;
  color: orange;
}

}
