
.hero-section {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    background: linear-gradient(70deg, #0057D8 0%, #7AC943 115.66%);
    overflow: hidden;
}
.hero-section h1 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.content-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.left-panel {
    background-color: #1a224a;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.left-panel h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.left-panel p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.quote-box {
    background-color: #273062;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.quote-box p {
    font-style: italic;
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5a64a0;
}

.author-name {
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: #a0a8cc;
    margin: 0;
}
.right-panel {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 37px;
    line-height: 46px;
    text-transform: uppercase;
    COLOR: #FFF;
}
.right-panel .form-group {
    margin-bottom: 20px;
}

.right-panel label {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: start;
}
.right-panel input[type="text"],
.right-panel input[type="email"],
.right-panel input[type="url"],
.right-panel select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
}
.right-panel .nice-select {
    position: relative;
    display: flex;
    font-size: 14px;
    line-height: 16px;
    padding-right: 14px;
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    align-items: center;
}
.right-panel .nice-select:before {
    top: auto;
}
.right-panel input[type="text"]::placeholder,
.right-panel input[type="email"]::placeholder,
.right-panel input[type="url"]::placeholder {
    color: #aaa;
}

.right-panel select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.2%203.2-15.6%208.1-3.4%204.9-3.4%2011.6%200%2016.5l128.8%20153.6c3.4%204.9%209.1%208.1%2015.6%208.1s12.2-3.2%2015.6-8.1L287%2085.9c3.4-4.9%203.4-11.6%200-16.5z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 12px;
    padding-right: 30px;
}


.right-panel .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.right-panel .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    transform: scale(1.2);
}

.right-panel .checkbox-group label {
    font-size: 14px;
    color: #555;
    display: inline;
}

.right-panel .checkbox-group label a {
    color: #007bff;
    text-decoration: none;
}

.right-panel .checkbox-group label a:hover {
    text-decoration: underline;
}

.right-panel button {
    background-color: #a4e544;
    color: #1a224a;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.right-panel button:hover {
    background-color: #8cd338;
}

@media (max-width: 992px) {
    .content-section {
        flex-direction: column;
        align-items: center;
    }

    .left-panel,
    .right-panel {
        max-width: 100%;
    }

    .left-panel {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .left-panel h2 {
        font-size: 24px;
    }

    .left-panel,
    .right-panel {
        padding: 30px;
    }
    .content-section {
  
     padding: 0px; 

}
}

.section-container {
    width: 100%;
    padding: 100px 0px 50px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

    .left-column {
      flex: 1;
      min-width: 300px;
    }

    .left-column h2 {
      font-size: 30px;
      font-weight: 800;
      color: #0d113b;
      margin-bottom: 15px;
    }

    .left-column p {
      font-size: 18px;
      font-weight: 600;
      color: #4b4f72;
      margin: 0;
    }

    .right-column {
      flex: 1.3;
      background-color: #f0f4ff;
      border-radius: 12px;
      padding: 35px 40px;
      box-shadow: inset 0 0 0 3px #d8e4ff;
    }

    .right-column p {
      font-size: 16px;
      color: #1a1a1a;
      line-height: 1.7;
      margin-top: 0;
    }

    .right-column ul {
      margin: 20px 0 0 20px;
      padding: 0;
      columns: 2;
      column-gap: 40px;
      list-style: disc;
    }

    .right-column li {
    margin-bottom: 12px;
    font-style: italic;
    color: #404040;
    font-size: 15px;
    transition: all 0.2s ease;
    list-style: disc;
}

    .right-column li:hover {
      color: #000;
      transform: translateX(5px);
    }

    @media (max-width: 768px) {
      .section-container {
        flex-direction: column;
      }

      .right-column ul {
        columns: 1;
      }

      .left-column h2 {
        font-size: 26px;
      }

      .left-column p {
        font-size: 16px;
      }
    }

    .cta-box {
    position: relative;
    width: 100%;
    background-color: #020834;
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    margin: 40px 0px 80px 0px;
}

    .cta-box h2 {
      color: #ffffff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 30px;
    }

    .cta-box .cta-button {
      display: inline-block;
      background-color: #b5ff39;
      color: #000;
      padding: 14px 28px;
      border: none;
      font-size: 14px;
      font-weight: 600;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta-box .cta-button:hover {
      background-color: #a1e734;
    }

    /* Decorative lines */
    .line {
      position: absolute;
      height: 4px;
      width: 50px;
      transform: skewX(-20deg);
    }

    .line.green {
      background-color: #b5ff39;
    }

    .line.blue {
      background-color: #4a6fff;
    }

    .line.gray {
      background-color: #8088a1;
    }

    /* Positioning lines */
    .line1 { top: 30%; left: 5%; width: 40px; }
    .line2 { top: 60%; left: 15%; width: 50px; }
    .line3 { top: 25%; right: 15%; width: 50px; }
    .line4 { top: 70%; right: 10%; width: 45px; }
    .line5 { bottom: 15%; left: 50%; transform: skewX(-20deg) translateX(-50%); }

    @media (max-width: 600px) {
      .cta-box {
        padding: 40px 20px;
      }

      .cta-box h2 {
        font-size: 20px;
      }

      .line {
        display: none;
      }
    }