/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Header */
header {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  height: 50px;
}

header nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

header nav a.cta-button {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

header nav a.cta-button:hover {
  background: #e65c00;
}

/* Hero Section */
.hero {
  background: url('press/hero-bg.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero .cta-button {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #e65c00;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  font-size: 2.5em;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

/* Tool Selection Section */
.tool-selection {
  padding: 60px 20px;
  text-align: center;
}

.tool-selection h1 {
  margin-bottom: 20px;
  font-size: 2.5em;
}

.tool-selection p {
  margin-bottom: 40px;
  font-size: 1.2em;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.icon-grid .platform {
  display: inline-block;
  width: 128px;
  height: 128px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.icon-grid .platform:hover {
  transform: scale(1.05);
}

.icon-grid .platform img {
  width: 100%;
  height: auto;
}

/* Upload Section */
.upload-section {
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.upload-section h1 {
  margin-bottom: 20px;
  font-size: 2em;
}

.upload-section p {
  margin-bottom: 30px;
  font-size: 1.1em;
}

.upload-section form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input[type="file"],
.form-group input[type="text"],
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Results Section */
.results-section {
  padding: 60px 20px;
  text-align: center;
}

.results-section h1 {
  margin-bottom: 20px;
  font-size: 2.5em;
}

.results-section p {
  margin-bottom: 30px;
  font-size: 1.2em;
}

#carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.arrow-button {
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
}

#carousel-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
}

/* Subscription Section */
.subscription-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.subscription-section h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.5em;
}

.subscription-section p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.1em;
}

.subscription-section .about,
.subscription-section .subscribe {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscription-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subscription-form button {
  padding: 15px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscription-form button:hover {
  background: #e65c00;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .feature-list {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.5em;
  }
}
