        * {
            box-sizing: border-box;
        }
        body {
            /*font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;*/
        }
        .tabs-container {
            display: block;
        }
        .tab-button {
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
            cursor: pointer;
            padding: 10px 15px;
            transition: 0.3s;
            font-size: 17px;
            text-align: left;
            margin: 5px 0;
            width: 100%;
        }
        .tab-button:hover {
            background-color: #f1f1f1;
        }
        .tab-button.active {
            background-color: #e6e6e6;
            border-color: #999;
        }
        .tab-content {
            display: block;
            padding: 8px;
            /*border: 1px solid #ccc;*/
        }
        .accordion-button {
            background-color: #f1f1f1;
            color: #444;
            cursor: pointer;
            padding: 18px;
            width: 100%;
            text-align: left;
            border: none;
            outline: none;
            transition: 0.4s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-button:hover, .accordion-button.active {
            background-color: #ddd;
        }
        .accordion-button:after {
            content: '\25BC';
            font-size: 13px;
            color: #777;
            transition: 0.4s;
        }
        .accordion-button.active:after {
            transform: rotate(180deg);
        }
        .accordion-content {
            padding: 0 18px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
        }
        @media (min-width: 768px) {
            .tabs-container {
                display: flex;
                flex-direction: row;
            }
            .tabs {
                display: flex;
                flex-direction: column;
                width: 25%;
                padding-right: 15px;
            }
            .tab-content {
                width: 75%;
            }
            .tab-content.active {
                display: block;
            }
            .accordion {
                display: block;
            }
        }