body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.title {
    position: relative;
    background-image: url('/../../../assets/photos/bg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
    z-index: 1;
}

.title h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content {
    background-color: #fff;
    padding: 20px 100px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1100px; /* Decreased width by 10% */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    text-align: justify;
}   

.content p {
    text-align: justify;
}

@media (max-width: 768px) {
    .content {
        padding: 20px 50px;
    }
}
