/* Wrapper & Header */
.hws-wrapper-82e5c5ab {
    font-family: inherit;
    color: #333;
}

.hws-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.hws-subtitle {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hws-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hws-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hws-header-divider {
    width: 80px;
    height: 2px;
    border-bottom: 2px solid #6c2b8c;
    margin: 0 auto;
    opacity: 0.5;
}

/* Grid Layout */
.hws-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Cards */
.hws-card {
    display: flex;
    flex-direction: row;
    background-color: #f9f8f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.hws-card.hws-full-width {
    grid-column: 1 / -1;
}

.hws-card-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    min-height: 300px;
}

.hws-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hws-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hws-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f1ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.hws-card-icon svg {
    width: 20px;
    height: 20px;
}

.hws-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px;
}

.hws-card-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.hws-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hws-footer-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 25px;
}

.hws-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #6c2b8c;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hws-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .hws-grid {
        grid-template-columns: 1fr;
    }
    
    .hws-card {
        flex-direction: column;
    }
    
    .hws-card-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: 250px;
        min-height: auto;
    }
    
    .hws-card-image img {
        position: relative;
    }
}