body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9fbff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Desktop default layout */
.hero {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-direction: row; /* left & right side by side */
}

/* Mobile layout */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* stack vertically */
    }
    .hero-left {
        order: 1; /* text section sabse upar */
    }
    .hero-right {
        order: 2; /* registration form niche */
        margin-top: 20px;
    }
}


.hero-left {
    flex: 1;
    text-align: center;
}

.hero-left h2 {
    color: #e60073;
    font-size: 22px;
}

.hero-left p {
    margin: 10px 0;
    color: #666;
}

.hero-left h3 {
    font-size: 18px;
    margin-top: 20px;
}

.register-btn {
    padding: 10px 25px;
    background-color: #ff007f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

.hero-right {
    flex: 1;
    background: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
}

.hero-right h3 {
    color: #333;
}

.hero-right h3 span {
    color: #ff007f;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #ff007f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    height: 40px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
    color: #000 !important;
    font-weight: bold !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

.how-it-works {
    margin-top: 60px;
}

.accordion {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    padding: 15px 20px;
    background: #ff007f;
    color: white;
    cursor: pointer;
}

.accordion-body {
    padding: 15px 20px;
    display: none;
    background-color: #f8f8f8;
}

.how-it-works {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 30px;
  margin-top: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.how-it-works h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.how-it-works ol {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
}

.how-it-works ol li {
  background: #fff;
  margin: 8px 0;
  padding: 12px 16px;
  border-left: 4px solid #007bff;
  border-radius: 5px;
  font-size: 16px;
  color: #444;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.how-it-works ol li:hover {
  background: #eef6ff;
  border-left-color: #0056b3;
}

