/* Base section styling */
.ppc-section {
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease-in-out;
}

/* Add a floating effect on hover */
.ppc-section:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

/* Heading and subheading styles */
.ppc-section h2,
.ppc-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Animation on headings - underline appearing from left to right */
.ppc-section h2::after,
.ppc-section h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #2575fc;
    bottom: 0;
    left: 0;
    transition: width 0.4s ease-out;
}

.ppc-section h2:hover::after,
.ppc-section h3:hover::after {
    width: 100%;
}

/* Styling for paragraphs */
.ppc-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* List styling */
.ppc-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #555;
}

.ppc-section ul li {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.ppc-section ul li:hover {
    transform: translateY(-5px);
    background: #00ffcc;
    color: #000;
}

/* Highlighting important text */
.ppc-section strong {
    font-weight: bold;
    color: #000;
    position: relative;
}

.ppc-section strong::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2575fc;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.ppc-section strong:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hover effect for the section */
.ppc-section:hover {
    background: linear-gradient(145deg, #f5f5f5, #ffffff);
}

/* Create a slight blur and color overlay for focus */
.ppc-section:focus-within {
    filter: blur(2px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9));
}

