body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}
header .logo {
  height: 60px;
}
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin: 0;
}
/* Banner Section */
.banner {
  background-color: #FF4B3A;
  padding: 130px 0;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.banner h2 {
  font-size: 2.5rem;
  margin: 0;
}
.banner p {
  margin: 10px 0;
  font-size: 1.2rem;
}
.btn-banner {
  background-color: white;
  color: #FF4B3A;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-banner:hover {
  background-color: #FF6F61;
  color: white;
}
/* Hero Section */
.hero {
  background: url('https://via.placeholder.com/1920x600') no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.hero h2 {
  font-size: 3rem;
}
.btn {
  background-color: #FF6F61;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #FF4B3A;
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.templates-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.template-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.template-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.template-card:hover {
  transform: scale(1.05);
}
.template-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 10px;
}
.editor-section {
  margin-top: 40px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.editor-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.editor-area {
  background-color: #eaeaea;
  padding: 20px;
  border-radius: 8px;
  height: 300px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.editor-area img {
  max-width: 100%;
  max-height: 100%;
}
.footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}