/* Slickline Section Styles */
.slickline-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.slickline-section h2 {
    font-size: 3.5rem;
    color: #4e1e1e;
    margin-bottom: 20px;
}

.slickline-section p {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #363636;
}

/* Application Section Styles */
.application-section {
    padding: 60px 0;
    background-color: #fff;
}

.application-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.text-content {
    flex: 1 1 60%;
}

.text-content h2 {
    font-size: 2.8rem;
    color: #4e1e1e;
    margin-bottom: 20px;
}

.text-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
}

.text-content li {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.text-content h3 {
    font-size: 2.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.image-content {
    flex: 1 1 35%;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .application-content {
        flex-direction: column;
    }

    .text-content {
        flex: 1 1 100%;
    }

    .image-content {
        flex: 1 1 100%;
        margin-top: 10px;
    }

    .slickline-section h2,
    .application-section h2 {
        font-size: 2.3rem;
    }

    .text-content h3 {
        font-size: 1.8rem;
    }

    .slickline-section p,
    .text-content li {
        font-size: 1.3rem;
    }
}