/* ==================== HERO SECTION ==================== */
body{
    color: black;
}	
.pp-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.pp-overlay {
    background: rgba(0, 80, 88, 0.7);
    padding: 40px;
    border-radius: 10px;
}

.pp-hero h1 {
    font-size: 38px;
    font-weight: bold;
}

.pp-hero p {
    font-size: 20px;
}

/* ==================== SLIDESHOW ==================== */
.pp-slideshow-container {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.pp-slideshow {
    display: flex;
    justify-content: center;
    position: relative;
}

.pp-slideshow img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    position: absolute;
}

/* ==================== FORM SECTION ==================== */
.pp-form-container {
    text-align: left;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    margin: 50px auto;
}

.pp-form-container h2 {
    font-size: 44px;
    margin-bottom: 10px;
}

.pp-form-container h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pp-form-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.pp-input-group {
    display: flex;
    gap: 15px;
}

.pp-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.pp-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #FEAC00;
    color: black;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 15px;
    transition: background 0.3s ease-in-out;
}

.pp-button:hover {
    background: #ff9800;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .pp-hero {
        height: 50vh;
    }
    .pp-form-container {
        width: 90%;
        padding: 30px;
    }
    .pp-hero h1 {
        font-size: 30px;
    }
}
