.desire-tech-section {
    padding: 80px 40px;
    background-color: #000000;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(84, 178, 72, 0.2);
    position: relative;
    overflow: hidden;
}

.desire-tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/discussionsection/discussion-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.desire-tech-container {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.desire-tech-title,
.desire-tech-title span {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
}

.desire-tech-subtitle {
    font-size: 18px;
    font-family: var(--font-body);
    color: #ffffff;
    max-width: 600px;
    width: 100%;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 500;
    opacity: 0.9;
    box-sizing: border-box;
}

.desire-tech-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 18px 55px;
    /* Larger button */
    border-radius: 50px;
    /* Perfect pill */
    font-size: 18px;
    font-family: var(--font-body);
    /* Lora */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desire-tech-btn:hover {
    background-color: #46a13b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(84, 178, 72, 0.4);
}

.desire-tech-btn.white-btn {
    background-color: #ffffff;
    color: #54b248;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 45px;
    font-weight: 600;
}

.desire-tech-btn.white-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .desire-tech-section {
        padding: 40px 0;
    }

    .desire-tech-container {
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
    }

    .desire-tech-title {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }


    .desire-tech-subtitle {
        font-size: 14px !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .desire-tech-btn {
        width: auto;
        min-width: 240px;
        padding: 12px 25px;
        font-size: 16px;
    }
}