/* General Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
.main-header {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav .btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 15px;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.btn-outline {
  border: 1px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn:hover {
  opacity: 0.85;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

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

.hero-actions .btn {
  margin: 10px;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  background: #fff;
}

.section-alt {
  background: #f8f8f8;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.feature-box i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #007bff;
}

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-box {
  flex: 1 1 300px;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.pricing-box h3 {
  margin-bottom: 10px;
}

.pricing-box .price {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 20px;
}

/* App Icons */
.app-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.app-icons a {
  font-size: 18px;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
.main-footer {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  color: #555;
  margin-top: 40px;
}

/* Register Page */
.register-wrapper {
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  background: #fff;
  margin: auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.subdomain-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subdomain-input span {
  font-size: 16px;
  color: #555;
}

.note {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}
