@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');

:root {
    --primary-color: #262262;
    --primary-color-2: #27AAE1;
    --primary-gradient: linear-gradient(135deg, #FF5D4C 0%, #FF7E6B 100%);
    --primary-color-blur: #ff5d4c;
    --primary-color-light: #FF7E6B;
    --primary-para: #54595F;
    --primary-para-dark: #6E6E6E;
    --primary-heading: #36485c;
    --primary-white: #fff;
    --primary-black: #040707;
    --primary-gray: gainsboro;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.theme-section {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.img-text {
    display: grid;
    row-gap: 30px;
}

@media (min-width: 786px) {
    .theme-section {
        width: 88%;
    }

    .img-text {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media (min-width: 1530px) {
    .theme-section {
        width: 1500px;
    }
}

.faq-answer {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer.open {
    max-height: 200px;
    padding-top: 0.5rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.faq {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(62, 191, 194, 1) 100%);
    /* padding: 1rem; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-size: cover;
    width: 100%;
}

.faq-header {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #444;
    margin-bottom: 0.5rem;
}

.faq-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-item {
    background-color: #e6f8f9;
    border-radius: 8px;
    /* padding: 0.75rem 1rem; */
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.faq-answer {
    font-size: 0.875rem;
    color: #555;
}

footer {
    position: relative;
    background: linear-gradient(90deg, #262262 0%, #3a3a8f 100%);
    color: white;
    padding: 50px 0;
    overflow: hidden;
    margin-top: 80px;
}

footer .theme-section {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 10;
}

footer .logo img {
    margin-bottom: 30px;
    width: 260px;
}

footer .logo p {
    color: var(--primary-para-color);
    margin-top: 20px;
    font-size: 14px;
}

footer .logo>div {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 23px;
    margin-top: 20px;
}

footer .logo>div>div {
    height: 50px;
    width: 50px;
    border: 2px solid var(--primary-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .payment ul {
    margin-top: 30px;
}

footer .payment ul>*+* {
    margin-top: 14px;
}

footer .payment li {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width:500px) {
    footer .theme-section {
        row-gap: 50px;
    }
}

@media (min-width:500px) {
    footer .theme-section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    footer .payment {
        width: fit-content;
        margin: 0 auto;
    }
}

footer .services h1 {
    font-size: 28px;
    font-weight: 500;
}

footer .services div {
    margin-top: 14px;
    display: grid;
    row-gap: 12px;
    font-size: 15px;
}