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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Main Layout */
.page-container {
  display: flex;
  min-height: 100vh;
}

/* Left Section - Form Area */
.left-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 600px;
}

.logo-container {
  margin-bottom: 40px;
}

.logo {
  height: 60px;
  width: auto;
}

.content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #1a202c;
}

.highlighted {
  color: #6B46C1;
}

.subtitle {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  max-width: 400px;
}

/* Form Styling */
.form-group {
  margin-bottom: 24px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #6B46C1;
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
  outline: none;
}

.submit-btn {
  width: 100%;
  background-color: #6B46C1;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-btn:hover {
  background-color: #553c9a;
  transform: translateY(-1px);
}

.arrow {
  margin-left: 8px;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
  text-align: center;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.copyright {
  font-size: 14px;
  color: #718096;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #6B46C1;
}

/* Right Section - Benefits */
.right-section {
  flex: 1;
  background-color: #f0eafb;
  padding: 40px;
  display: flex;
  align-items: center;
}

.benefits-container {
  max-width: 500px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  margin-bottom: 32px;
  align-items: flex-start;
}

.benefit-icon {
  margin-right: 16px;
  padding: 12px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a202c;
}

.benefit-text p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

/* Message Styling */
#subscription-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.success-message {
  background-color: #f0fff4;
  color: #2f855a;
  border: 1px solid #c6f6d5;
}

.error-message {
  background-color: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
  text-align: center;
  font-size: 12px;
  color: #718096;
  padding: 0;
}

.recaptcha-notice a {
  color: #6B46C1;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-container {
    flex-direction: column;
  }
  
  .left-section {
    max-width: 100%;
  }
  
  .right-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .left-section {
    padding: 20px;
  }
  
  .main-heading {
    font-size: 36px;
  }
  
  .benefit-icon {
    margin-bottom: 12px;
  }
  
  .footer {
    flex-direction: column;
    gap: 16px;
  }
}

.success-message {
  color: #28a745;
}

.error-message {
  color: #dc3545;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #ddd;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
}

.social-icon {
  display: inline-block;
  margin-left: 10px;
  color: #fff;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo, .footer-links, .footer-social {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }

  .form-group input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .submit-btn {
    border-radius: 4px;
    padding: 10px;
    width: 100%;
  }
}
