@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #04938a;
}

.maintenance-section {
    background-color: #04938a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    line-height: 65px;
    font-size: 3.2em;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    /* font-size: 2.2rem; */
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-title {
    line-height: 65px;
    font-size: 3.2em;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    /* font-size: 1.8rem; */
    font-weight: 600;
    margin-bottom: 15px;
}

.brand-title {
    line-height: 65px;
    font-size: 3.2em;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    /* font-size: 2.5rem; */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.description-p {

    font-size: 2.2em;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

.highlight-p {

    font-size: 1.9em;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.keyword-cloud {
    font-size: 0.85rem;
    line-height: 2;
    text-align: justify;
    text-align-last: center;
    opacity: 0.9;
    margin-bottom: 50px;
    padding: 0 10px;
    word-spacing: 2px;
}

.keyword-cloud span {
    display: inline-block;
    margin: 0 1px;
}

.cta-container {
    margin-top: 40px;
}

.btn-call {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    padding: 10px 0px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    margin-bottom: 10px;
    width: 100%;
}

.btn-call:hover {
    background-color: #ffffff;
    color: #04938a;
}

.phone-display {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2em;
    }

    .sub-title {
        font-size: 2em;
    }

    .brand-title {
        font-size: 2em;
    }

    .description-p,
    .highlight-p {
        font-size: 1.5em;
    }

    .btn-call {
        padding: 10px 50px;
        width: 80%;
        box-sizing: border-box;
    }
}