/* styles.css */

body {
    text-align: justify;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.page-background {
    background-color: #f8faf9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Highlight phone numbers with red color */
.phone-number {
    color: red;
}

/* Adjust title sizes for all devices */
h1 {
    font-size: 1.5em; /* Adjust as needed */
}

h2 {
    font-size: 1.3em; /* Adjust as needed */
}

h3 {
    font-size: 1.1em; /* Adjust as needed */
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 600px) {
    body {
        text-align: left;
    }

    .container {
        max-width: 100%;
        padding: 10px;
    }

    section {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* Additional adjustments for improved mobile responsiveness */
    p {
        margin-bottom: 10px;
    }
}
