@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body {
  font-family: 'Poppins', sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
.image-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.content-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
h1 {
    color: #4B0082;
    font-size: 2.5em;
    margin-bottom: 20px;
}
h2 {
    color: #000080;
    margin-bottom: 20px;
}
p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-para{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 30px;
}
.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1E90FF;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}
.why-icon {
    flex: 1;
    background-color: #f0f8ff;
    padding: 20px;
    min-width: 300px;
}
.features {
    flex: 2;
    padding: 20px;
    min-width: 300px;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
li::before {
    content: "•";
    color: #4169e1;
    font-size: 1.5em;
    margin-right: 10px;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
}
.feature-column {
    flex: 1;
    min-width: 200px;
}
.feature-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.feature-item::before {
    content: "✓";
    color: #4169e1;
    font-weight: bold;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }
    .image-section, .content-section, .why-icon, .features {
        width: 100%;
    }
}






.our-per {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
}
.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.my-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}
.icon {
    font-size: 48px;
    color: #4285f4;
    margin-bottom: 20px;
}
.my-card h2 {
    color: #333;
    margin-bottom: 15px;
}
.my-card p {
    color: #666;
}
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.faq-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    display: block;
    padding: 15px 20px;
    background-color: #fff;
    color: #2c0d5f;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    cursor: pointer;
}
.faq-question::after {
    content: "\25BC";
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.faq-toggle {
    display: none;
}
.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}
.faq-toggle:checked + .faq-question::after {
    transform: rotate(180deg);
}
.faq-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}