.tabs {
            display: flex;
            gap: 10px;
            margin-bottom: -4px;
        }

        .tab {
            padding: 10px;
            background: #003660;
            cursor: pointer;
            border-radius: 3px;
            color: white;
            transition: background 0.3s;
        }

        .tab-content {
            padding: 15px;
            background: white;
            border: 4px solid #003660;
            min-height: 100px;
            width: 100%;
            display: none;
        }

        .tab.active-tab {
            background: #ffc108;
            color: #003660;
            border: 4px solid #003660;
        }

        .tab-content.active {
            display: block;
        }

        h4 {
            font-size: 1.8rem;
        }