/* Not Sure Block */
.not-sure-section {
    background-color: #49A38C33;
    padding: 0;
    width: 100%;
    margin: 0;
}

.not-sure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Text Content */
.not-sure-content {
    padding-right: 20px;
}

.not-sure-content h2 {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.not-sure-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.not-sure-content .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #028476;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(2, 132, 118, 0.15);
}

.not-sure-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(2, 132, 118, 0.25);
}

/* Right Side: Image */
.not-sure-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 0px !important;
}

.not-sure-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.not-sure-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.not-sure-image-wrapper:hover .not-sure-image {
    transform: scale(1.02);
}

.not-sure-btn {
    background: #028476 !important;
    box-shadow: 0 4px 16px rgba(2, 132, 118, 0.15) !important;
}

.not-sure-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(2, 132, 118, 0.25) !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .not-sure-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .not-sure-content {
        padding-right: 0;
    }

    .not-sure-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .not-sure-container {
        padding: 0 20px;
    }

    .not-sure-content h2 {
        font-size: 28px;
    }

    .not-sure-content p {
        font-size: 18px;
    }

    .not-sure-section {
        padding: 50px 0;
    }

    .not-sure-content .btn-primary {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .not-sure-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .not-sure-content p {
        font-size: 18px;
    }

    .not-sure-section {
        padding: 40px 0;
    }
}
