﻿.page-top-header{
    margin-bottom:4rem;
}

.explanation{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:4rem;
}

.explanation h2{
    font-weight:bold;
    margin-bottom:1rem;
}

.explanation p{
    text-align:left;
    margin-bottom:1rem;
}

.five-steps {
    display: flex;
    justify-content:center;
    width:70%;
    margin-left:auto;
    margin-right:auto;
    border-radius:8px;
    padding:4rem;
    padding-left:5%;
    padding-right:5%;
    margin-bottom:5rem;
}
@media only screen and (max-width:800px) {
    .five-steps {
        width: 90%;
    }
}
.five-steps-graphic{
    display:flex;
    flex-direction:column;
}

.five-steps h2 {
    font-weight: bold;
    margin-bottom: 2rem;
}

.step {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    min-height:120px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}
    .step p{
        text-wrap:nowrap;
    }
    @media only screen and (max-width:1200px){
        .step p {
            text-wrap: wrap;
        }
    }

.step:hover {
    transform: scale(1.01);
    background-color: #fbfbfb;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 20px;
    z-index: 1;
}
    .step-one .step-number{
        background: var(--secondary-color);
    }

    .step-two .step-number {
        background: #3F3C44;
    }

    .step-three .step-number {
        background: #7C3C30;
    }
    .step-four .step-number {
        background: #BE3A17;
    }
    .step-five .step-number {
        background: var(--primary-color);
    }

.extra-services{
    margin-bottom:4rem;
    padding-left:1rem;
    padding-right:1rem;
}

.extra-services h2{
    font-weight:bold;
    margin-bottom:1rem;
}

.extra-services-header p{
    margin-bottom: 2rem;
}

.extra-services-grid{
    display:grid;
    grid-template-columns: 1fr;
}

.extra-services-item{
    display:grid;
    grid-template-columns: 15% 1fr;
    margin-bottom:3rem;
}

.extra-services-img-div{
    display:flex;
    margin-left:5%;
}
.extra-services-img {
    width: 60%;
}

@media only screen and (max-width:550px) {
    .extra-services-item {
        grid-template-columns: 1fr;
    }

    .extra-services-img-div {
        justify-content: center;
    }

    .extra-services-img {
        width: 20%;
        margin-bottom:1rem;
    }
}

.service-level-agreements {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.service-level-title {
    font-weight: bold;
    margin-bottom: 2rem;
}
.sla-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#full-table {
    display: table;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

th, td {
    text-align: center;
    padding: 15px;
    border: 1px solid #FFFFFF;
}

th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width:500px;
}

    th.standard {
        background-color: var(--primary-color);
        color: white;
    }

    th.silver {
        background-color: #c0c0c0;
    }

    th.gold {
        background-color: #ffd700;
    }

td {
    border: 1px solid #ddd;
}

    td:first-child {
        text-align: left;
        background-color: #f6fbfd;
        border: 0;
        border-bottom: 1px solid #ddd;
    }

.check {
    font-size: 1.5em;
}

#mobile-tables {
    display: none;
}

@media only screen and (max-width: 768px) {
    #full-table {
        display: none;
    }

    #mobile-tables {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .mobile-table {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-collapse: collapse;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        margin-bottom:3rem;
    }

        .mobile-table th {
            background-color: #eee;
            text-align: center;
            padding: 10px;
            font-size: 1.1em;
        }

        .mobile-table td {
            padding: 10px;
            border-top: 1px solid #eee;
            text-align: center;
        }
    td {
        border: none;
        border-bottom: 1px solid #ddd;
        background-color: #f6fbfd;
    }
        .mobile-table.standard th {
            background-color: #0b90c4;
            color: white;
        }

        .mobile-table.silver th {
            background-color: #c0c0c0;
        }

        .mobile-table.gold th {
            background-color: #ffd700;
        }
}


.need-assistance {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.need-assistance h2{
    font-weight:bold;
    margin-bottom:1rem;
}

    .need-assistance p{
        max-width:700px;
        margin-bottom:1rem;
    }

    .need-assistance div {
        margin-bottom: 1.5rem;
    }

.contact-choice{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    gap:12px;
    white-space:nowrap;
    flex-wrap:wrap;
}
.contact-choice div{
    display:flex;
    margin-bottom:0rem;
}
.contact-choice p{
    margin-bottom:0;
}
.contact-choice img{
    width:20px;
    margin-right:5px;
}