/* General Styles */
body {
  font-family: 'Lora', serif !important;
    background: url('../theme/image/background.svg') no-repeat center center fixed;
    background-size: cover;
    background-color: #f0f3fb;
  margin: 0;
  padding: 0;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
  padding-top: 50px;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

h1 {
  text-align: center;
  color: #274c77;
}

h1 i {
  margin-right: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

/* Input Section */
.input-section textarea {
  width: 90%;
  height: 150px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  resize: vertical;
}

/* Controls */
.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.controls button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color:	#6096ba;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.controls button:hover {
  background-color: #a3cef1;
}

/* Text Preview */
.preview {
  margin-bottom: 30px;
}

.preview h2 {
  color: #6096ba;
  margin-bottom: 15px;
}

.output-text {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  min-height: 50px;
  font-size: 16px;
}

/* Analysis Table */
.analysis {
  margin-bottom: 30px;
}

.analysis h2 {
  color: #6096ba;
  margin-bottom: 15px;
}

.analysis table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}

.analysis th, .analysis td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.analysis th {
  background-color: #6096ba;
  color: white;
}

/* Marketing Feature Cards */
.features {
  margin-bottom: 30px;
}

.features h2 {
  color: #6096ba;
  margin-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 40px;
  color: #2773a6;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: #333;
}

.card p {
  color: #666;
}

/* Detailed Sections */
.details {
  margin-bottom: 30px;
}

.details h2 {
  color: #6096ba;
  margin-bottom: 15px;
}

.details p {
  line-height: 1.6;
  color: #666;
}