/* SPK About Section Styles */
.spk-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    font-family: 'Libre Franklin', sans-serif;
    /* Matching theme font */
}

/* Background element for visual interest */
.spk-about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(113, 177, 0, 0.05);
    /* #71b100 with opacity */
    border-radius: 50%;
    z-index: 0;
}

.spk-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.spk-about-image-wrapper {
    flex: 1 1 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.spk-about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spk-about-image-wrapper:hover .spk-about-image {
    transform: scale(1.08);
}

/* Decorative frame around image */
.spk-about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    pointer-events: none;
}

.spk-about-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spk-about-subtitle {
    display: inline-block;
    color: #71b100;
    /* Primary Color */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

.spk-about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: #71b100;
}

.spk-about-title {
    font-family: 'Playfair Display SC', serif;
    /* Matching theme headers */
    font-size: 3rem;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.spk-about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    border-left: 4px solid #71b100;
    /* Primary border accent */
    padding-left: 20px;
}

/* Animation Classes (applied by JS if needed, but we use GSAP direct mostly) */

/* Responsive Adjustments */
@media (max-width: 991px) {
    .spk-about-container {
        gap: 40px;
    }

    .spk-about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .spk-about-section {
        padding: 60px 0;
    }

    .spk-about-container {
        flex-direction: column;
    }

    .spk-about-image-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .spk-about-content {
        width: 100%;
        text-align: left;
        /* Keep left alignment for readability */
    }

    .spk-about-title {
        font-size: 2rem;
    }
}