/* What Is Section */
.what-is {
    width: 100%;
    padding: 5rem 0;
    background-color: #fff;
}

.what-is .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.what-is .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-is .section-tag {
    display: inline-block;
    color: #2a69ff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.what-is .section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.what-is .section-header h2 span {
    color: #2a69ff;
}

.what-is .section-header p {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
}

.what-is-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-box {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.what-is-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.what-is-box p:last-child {
    margin-bottom: 0;
}

.guarantee-box {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.guarantee-box h3 {
    color: #2a69ff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.guarantee-list .icon-wrapper {
    background: #e6f0ff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-list .icon-wrapper .fa-check {
    color: #2a69ff;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .what-is {
        padding: 3rem 0;
    }

    .what-is .container {
        padding: 0 1rem;
    }

    .what-is .section-header h2 {
        font-size: 2rem;
    }

    .what-is .section-header p {
        font-size: 1.1rem;
    }

    .what-is-box {
        padding: 2rem;
    }

    .guarantee-box {
        padding: 1.5rem;
    }

    .guarantee-box h3 {
        font-size: 1.2rem;
    }
}
