.promise-section {
    padding: 0 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.promise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.promise-text {
    flex: 1;
}

.promise-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.promise-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.promise-text a {
    color: #73a0c5;
    text-decoration: underline;
    font-weight: 500;
}

.promise-text a:hover {
    text-decoration: none;
}

.promise-image-wrapper {
    flex: 0 0 600px;
    height: 600px;
}

.promise-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .promise-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .promise-section {
        padding: 0 16px;
    }

    .promise-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 1 / 1;
        align-self: center;
        margin-top: 30px;
    }

    .promise-title {
        font-size: 28px;
    }

    .promise-text p:last-child {
        margin-bottom: 0;
    }
}