:root {
    --primary: #030F33;
    --accent: #50A36A;
    --light: #f5f7fb;
}

.section-wrap {
    background: #fff;
    /*padding: 60px 20px;*/
    padding: 40px 0px 90px 0px;
}


.sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.sec-title h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.sec-title p {
    color: #666;
}

/* Card Box */
.box {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #030F33;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
    background: #eef3ff;
}

/* List */
.box ul {
    list-style: none;
    padding: 0;
}

.box ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 25px;
}

.box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #030F33;
    font-weight: bold;
}


.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.tag:hover {
    background: #50A36A;
}

.faq-section {
    padding: 60px 20px;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

/* Heading */
.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h2 {
    color: var(--primary);
    font-size: 28px;
}

/* Accordion */
.faq-item {
    border: 2px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--accent);
}

/* Question */
.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    position: relative;
}

/* Plus Icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: var(--accent);
}

/* Active Icon */
.faq-item.active .faq-question::after {
    content: "-";
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 20px;
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px 20px;
}


.about-section {
    padding: 50px 0px 100px 0px;
}

.about-container {
    max-width: 1140px;
    margin: auto;
}

/* Heading */
.about-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-title h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 10px;
}

.about-title p {
    color: var(--primary);
    font-size: 16px;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Cards */
.about-card {
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

/* Icon circle */
.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.about-card:hover .icon {
    background: var(--primary);
}

/* Title */
.about-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Text */
.about-card p {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.6;
}

/* Bottom line */
.about-footer {
    text-align: center;
    margin-top: 50px;
    font-weight: 600;
    color: var(--primary);
}