* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 150px;
    padding: 30px;
}

section {
    flex: 1;
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-image: url('assets/background.png');
    background-repeat: repeat;
    background-size: 100%;
}

h1 {
    font-size: 16px;
    font-weight: 400;
    margin: 20px;
    color: #181818;
    text-align: center;
}

footer {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    gap: 50px;
    background-color: #FFFFFF;
}

footer>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

footer p {
    font-size: 12px;
    color: #353535;
}

footer a {
    text-decoration: none;
    color: #181818;
}

.actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.actions button {
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 10px;
    color: #232323;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
    background: #e5e5e5;
}

.actions button:hover {
    background: #ff6600;
    color: #FFFFFF;
}

.actions button.active {
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 900;
    background: #ff6600;
}

.commands {
    display: none;
    width: 100%;
    max-width: 900px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.commands.active {
    display: flex;
}

.commands-image-desktop {
    display: block;
    max-width: 900px;
}

.commands-image-mobile {
    display: none;
    max-width: 900px;
    margin: 20px;
}

.calls {
    display: none;
    width: 100%;
    max-width: 900px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.calls.active {
    display: flex;
}

.calls-image-desktop {
    display: block;
    max-width: 900px;
}

.calls-image-mobile {
    display: none;
    max-width: 900px;
    margin: 20px;
}


.extensions {
    display: none;
    width: 100%;
    max-width: 900px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.extensions.active {
    display: flex;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    border-radius: 20px;
    padding: 20px;
}

.company {
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
    background: #f3f3f3;
    margin: 10px;
    border-radius: 20px;
}

.company-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 0 20px 0;
    gap: 10px;
}


.company-header-title {
    flex: 1;
    font-weight: 400;
}

.company-header-number {
    font-size: 24px;
    margin-top: -5px;
    color: #232323;
}

.company-extension-header {
    flex: 1;
    display: flex;
    padding: 0 20px;
    font-size: 12px;
    color: #232323;
    margin: 5px;
}

.company-extensions {
    padding: 20px;
    border-radius: 20px;
    background: #FFFFFF;
}

.company-extension {
    flex: 1;
    display: flex;
    margin: 10px 0;
}

.company-extension-header p:first-child,
.company-extension p:first-child {
    flex: 1;
}

.company-extension p:first-child {
    font-size: 14px;
    color: #232323;
}

.company-extension p:last-child {
    font-size: 16px;
    color: #232323;
}

.company-extension {
    display: flex;
}

.extension-number {
    width: 100%;
    flex: 0.5;
}

@media screen and (max-width: 991px) {
    footer {
        flex-direction: column;
        align-items: center;
        font-size: 24px;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }

    .actions {
        flex-direction: column;
    }

    .actions button,
    .actions button.active {
        width: 100%;
        height: 80px;
        font-size: 24px;
    }

    .commands-image-desktop {
        display: none;
    }

    .commands-image-mobile {
        display: block;
    }

    .calls-image-desktop {
        display: none;
    }

    .calls-image-mobile {
        display: block;
    }
}