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

body {
  font-family: 'Karla', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f7f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-full {
  width: 100%;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #333;
}

/* Common Layout Components */
.main-container {
  max-width: 1000px;
  margin: 5px auto;
  background: #fff;
  padding: 10px 15px 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.rounded-container {
  max-width: 1000px;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 25px;
  padding: 15px 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin: 5px 0;
  text-align: center;
}

.logo-container img {
  max-width: 400px;
  width: 90%;
  height: auto;
  border: 2px solid #000;
  padding: 3px;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  background-color: #fff;
  padding: 10px 0;
  text-align: center;
}

.hero-section .container {
  max-width: 800px;
  padding: 0;
  margin: 0 auto;
}

.hero-image-container {
  text-align: center;
  margin: 3px 0;
  padding: 0 10px;
}

.hero-image-container img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.headline-text {
  text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 28px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 10px auto 5px;
  line-height: 1.2;
  max-width: 800px;
  padding: 0 15px;
}

.headline {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 5px 0 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0 10px;
}

.red-text {
  color: #ff0000;
  animation: flash-text 1.2s linear 3;
}

@keyframes flash-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.tagline {
  text-align: center;
  font-style: italic;
  margin: 2px 0 0;
  font-size: 18px;
  padding: 0 15px;
}

/* Buttons */
.button {
  display: inline-block;
  background-color: #ffeb3b; /* Bright yellow color */
  color: #000;
  padding: 8px 20px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
}

.button:hover {
  background-color: #fdd835; /* Slightly darker yellow on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3px;
  margin-bottom: 10px;
  padding: 0 15px;
}

/* Survey Elements */
.survey-container {
  max-width: 800px;
  margin: 15px auto;
  background: #fff;
  padding: 20px 15px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.survey-question {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  color: #1a365d;
  font-size: 28px;
  margin-bottom: 25px;
  padding: 0 10px;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  padding: 0 5px;
}

.option-button {
  background-color: #ffeb3b;
  border: none;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.option-button:hover {
  background-color: #fdd835;
}

.radio-control {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #333;
  background-color: #fff;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 10px;
}

/* How it works section */
.how-it-works {
  background-color: #fff;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 30px 0 20px;
}

.how-it-works h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

/* Steps layout */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 5px auto;
  padding: 0 10px;
}

.step-item {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin: 10px;
  text-align: left;
  width: 30%;
  min-width: 250px;
}

.step-icon {
  margin-right: 15px;
  margin-bottom: 0;
  min-width: 70px;
}

.step-icon img {
  width: 70px;
  height: auto;
}

.step-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
}

.step-text .red-text {
  color: red;
  font-weight: bolder;
}

/* Email form elements */
.email-form {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
  border: 1px solid #eee;
  position: relative;
}

.email-input {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
  box-sizing: border-box;
}

.input-arrow {
  position: absolute;
  top: 47%;
  right: 45px;
  width: 45px;
  height: auto;
  transform: translateY(-50%);
  animation: arrow-bounce 1.2s infinite alternate ease-in-out;
  pointer-events: none; /* Ensures the arrow doesn't interfere with clicks */
  z-index: 10;
}

@keyframes arrow-bounce {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(-8px);
  }
}

.email-input:focus ~ .input-arrow {
  display: none;
}

.cta-button-form {
  background-color: #ffeb3b;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-family: 'Oswald', sans-serif;
}

.cta-button-form:hover {
  background-color: #ffd600;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.lock-icon {
  margin-right: 5px;
  font-size: 16px;
}

/* Benefits section */
.benefits-text {
  font-size: 16px;
  line-height: 1.2;
  margin: 10px 0;
  text-align: center;
}

.highlight {
  font-weight: bold;
  text-decoration: underline;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin: 8px 0;
}

.check-icon {
  color: #ff9800;
  font-size: 18px;
  margin-right: 8px;
  flex-shrink: 0;
  font-weight: bold;
}

.benefit-description {
  font-size: 14px;
  line-height: 1.3;
}

/* Thank you page elements */
.loading-container {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 15px;
}

.loading-text {
  margin: 0 0 15px;
  font-size: 24px;
  color: #666;
  font-weight: 500;
}

.progress-bar {
  width: 80%;
  max-width: 600px;
  height: 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #2196F3;
  border-radius: 6px;
  width: 0%;
  animation: progress 4s linear forwards;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.shake-animation {
  display: inline-block;
  animation: shake 0.5s ease-in-out 3;
  animation-delay: 1s;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/* Animation for pointing finger */
.pointing-finger {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 15px;
  display: inline-block;
  position: relative;
  top: -2px;
  animation: finger-point 1s ease-in-out infinite alternate;
}

@keyframes finger-point {
  0% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(3px);
  }
}

/* Footer */
.footer-section {
  padding: 20px 15px;
  margin-top: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-section p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-section a {
  color: #1a365d;
  text-decoration: none;
  padding: 5px;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  margin: 0 5px;
}

.copyright, .disclaimer {
  margin: 10px 0;
  font-size: 14px;
}

.disclaimer {
  max-width: 700px;
  margin: 10px auto;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .step-item {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .headline-text {
    font-size: 24px;
  }
  
  .button {
    font-size: 20px;
    padding: 10px 15px;
  }
  
  .pointing-finger {
    width: 30px;
    height: 30px;
  }
  
  .step-item {
    width: 100%;
    min-width: auto;
    margin: 5px 0;
  }
  
  .logo-container img {
    max-width: 280px;
    width: 70%;
  }
  
  .headline {
    font-size: 20px;
  }
  
  .content-container {
    flex-direction: column;
  }
  
  .images-column,
  .benefits-column {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
  
  .project-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .project-images img {
    max-width: 85%;
    margin: 0 auto;
  }
  
  .benefits-text {
    font-size: one-size-smaller;
  }
  
  .benefit-item {
    margin: 10px 0;
  }
  
  .survey-container {
    padding: 15px;
    margin: 10px;
  }
  
  .survey-question {
    font-size: 22px;
  }
  
  .option-button {
    font-size: 16px;
    padding: 12px;
  }
  
  .how-it-works h2 {
    font-size: 26px;
  }
  
  .step-icon {
    min-width: 50px;
  }
  
  .step-icon img {
    width: 50px;
  }
  
  .input-arrow {
    right: 70px;
    width: 35px;
  }
  
  .main-container {
    margin: 10px auto;
    padding: 15px 15px 25px;
  }
}

@media (max-width: 480px) {
  .headline-text {
    font-size: 20px;
  }
  
  .button {
    font-size: 18px;
    padding: 8px 12px;
  }
  
  .pointing-finger {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  .rounded-container {
    margin: 5px;
    border-radius: 15px;
  }
  
  .logo-container img {
    max-width: 160px;
    width: 50%;
  }
  
  .headline {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 5px;
  }
  
  .project-images img {
    max-width: 70%;
  }
  
  .benefits-text {
    font-size: 13px;
  }
  
  .check-icon {
    font-size: 15px;
  }
  
  .benefit-description {
    font-size: 12px;
  }
  
  .cta-button-form {
    font-size: 15px;
    padding: 10px;
  }
  
  .input-arrow {
    right: 55px;
    width: 22px;
  }
  
  .privacy-note {
    font-size: 10px;
  }
  
  .survey-question {
    font-size: 20px;
  }
  
  .option-button {
    font-size: 14px;
    padding: 10px;
  }
  
  .radio-control {
    width: 20px;
    height: 20px;
  }
  
  .how-it-works h2 {
    font-size: 24px;
  }
  
  .step-text {
    font-size: 14px;
  }
  
  .main-container {
    margin: 5px auto;
    padding: 15px 10px 20px;
    border-radius: 10px;
  }
  
  .loading-container {
    margin: 25px auto;
  }
  
  .loading-text {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .progress-bar {
    height: 10px;
  }
} 