* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #1C1C1E;
}
.header {
    width: 100%;
    padding: 10px 3%;
    position: relative;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
}
.logo {
    width: 175px;
    cursor: pointer;
}
nav button {
    border: 0;
    outline: 0;
    background: #fff;
    color: #1C1C1E;
    padding: 12px 22px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}
.pricing-table {
    padding: 40px 0px;
}
.pricing-table .details {
    width: 90%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}
.pricing-table .details h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.pricing-table .details p {
    font-size: 15px;
}
.pricing-table .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0px;
}
.pricing-table .grid .box {
    width: 250px;
    text-align: center;
    padding: 20px;
    background: #1C1C1E;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 5px rgba(0,0,0,0.5);
}
.pricing-table .grid .box .title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}
.pricing-table .grid .box .price {
    margin-bottom: 20px;
}
.pricing-table .grid .box .price b {
    display: block;
    font-size: 40px;
    margin-bottom: -5px;
}
.pricing-table .grid .box .features > * {
    padding: 8px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.pricing-table .grid .box.professional .features > * {
    padding: 8px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.pricing-table .grid .box {
    color: #1C1C1E;
    background: #fff;
}
.pricing-table .grid .box.professional {
    transform: scale(1.1);
    color: #fff;
    background: #1C1C1E;
}
.pricing-table .grid .box .button button {
    width: 100%;
    margin: 25px 0px 0px;
    padding: 10px;
    background: #1C1C1E;
    color: #fff;
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.pricing-table .grid .box.professional .button button {
    width: 100%;
    margin: 25px 0px 0px;
    padding: 10px;
    background: #fff;
    color: #1C1C1E;
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
/* .footer {
    display: flex;
    justify-content: center;
    padding: 50px;
    color: #8a8a8a;
} */

@media (max-width: 804px) {
    .pricing-table .grid {
        gap: 20px;
    }
    .pricing-table .grid .box.box.professional {
        transform: scale(1);
        background: #1C1C1E;
    }
}