/* Reset and base styles */

.check-result-section {
  background-color: #e0f7fa;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px dashed #00acc1;
}

.check-result-button {
  background-color: #00acc1;
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s;
}

.check-result-button:hover {
  background-color: #007c91;
  transform: scale(1.05);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.featured-image {
  text-align: center;
  margin: 30px auto;
  padding: 10px;
  border: 4px dashed #1e88e5; /* Stylish blue dashed border */
  background-color: #f9f9f9;
  border-radius: 15px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: inline-block;
}


.full-width-image {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 5px solid #1e88e5; /* Optional: Styled border */
  border-radius: 10px;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
.site-header {
  background-color: #4A00E0;
  color: white;
  padding: 20px 0;
}

.site-header .logo {
  font-size: 2rem;
  font-weight: bold;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.site-header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #f12711, #f5af19);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-image {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.cta a {
  color: #fff;
  font-weight: bold;
}

/* How It Works */
.how-it-works {
  background-color: #E0F7FA;
  padding: 40px 0;
}

.how-it-works ol li {
  margin: 15px 0;
  font-size: 1.1rem;
}

/* Features */
.features {
  background-color: #FFF3E0;
  padding: 40px 0;
}

.features ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Gallery */
.gallery {
  background-color: #E8F5E9;
  padding: 40px 0;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-grid img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
}

/* Form Section */
.form-section {
  background-color: #FFF9C4;
  padding: 40px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select,
form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  padding: 12px;
  background-color: #4A00E0;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #3700b3;
}

/* FAQ */
.faq {
  background-color: #F3E5F5;
  padding: 40px 0;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  font-size: 1.2rem;
  color: #4A00E0;
}

/* Contact */
.contact-info {
  background-color: #E1F5FE;
  padding: 40px 0;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .image-grid {
    flex-direction: column;
    align-items: center;
  }

  form {
    width: 100%;
  }
}


